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

NameValueComment
None0The Option is not holding any value.
Some1The Option is holding a value.