mirror of
https://github.com/IBM/fp-go.git
synced 2025-12-11 23:17:16 +02:00
8 lines
77 B
Go
8 lines
77 B
Go
|
|
package builder
|
||
|
|
|
||
|
|
type (
|
||
|
|
Builder[T any] interface {
|
||
|
|
Build() Result[T]
|
||
|
|
}
|
||
|
|
)
|