Add option type

This commit is contained in:
Sasha Koshka 2025-01-20 18:45:56 -05:00
parent 6a883cebbf
commit 17fd0ba161

6
option.go Normal file
View File

@ -0,0 +1,6 @@
package hopp
import "git.tebibyte.media/sashakoshka/go-util/container"
// TODO make generic alias once go 1.24 releases
type Option[T any] ucontainer.Optional[T]