State
Description
The representation of an Option's state, which can either be #None to represent it has no value, or #Some for when it is holding a value.
Declared at: sus/option/state.h:23
Enumerators
Name | Value | Comment |
---|---|---|
None | 0 | The Option is not holding any value. |
Some | 1 | The Option is holding a value. |