mirror of
https://github.com/IBM/fp-go.git
synced 2025-12-09 23:11:40 +02:00
16 lines
253 B
Go
16 lines
253 B
Go
package builder
|
|
|
|
import (
|
|
"github.com/IBM/fp-go/v2/optics/prism"
|
|
"github.com/IBM/fp-go/v2/option"
|
|
"github.com/IBM/fp-go/v2/result"
|
|
)
|
|
|
|
type (
|
|
Result[T any] = result.Result[T]
|
|
|
|
Prism[S, A any] = prism.Prism[S, A]
|
|
|
|
Option[T any] = option.Option[T]
|
|
)
|