index
:
optional-go
main
Optional implementation for the Go language
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
optional
/
main.go
blob: 6cc494ace329300f767a5d7bd875427946ec005a (
plain
)
1
2
3
4
5
6
package optional type Optional[T any] struct { Value T Exists bool }