1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-11-25 22:21:49 +02:00
Files
fp-go/v2/builder/builder.go

8 lines
77 B
Go
Raw Normal View History

package builder
type (
Builder[T any] interface {
Build() Result[T]
}
)