Package: effect
Module: Option
The Option data type represents optional values. An Option<A> is either
Some<A>, containing a value of type A, or None, representing absence.
When to use
Use to represent initial values that may not yet exist
See
some for creating a Somenone for creating a Nonematch for pattern matchingSignature
type Option<A> = None<A> | Some<A>
Since v2.0.0