The constructor for `None` is incorrect, `isFull` should be set to `false` This is the code from line [74 in option.go](https://github.com/aryehlev/option/blob/main/option.go#L74) ```go func None[T any]() Option[T] { return Option[T]{isFull: true} } ```
The constructor for
Noneis incorrect,isFullshould be set tofalseThis is the code from line 74 in option.go