go-opt/optional_isnothing.go

6 lines
92 B
Go

package opt
func (receiver Optional[T]) IsNothing() bool {
return !(receiver.something)
}