Variable NoneConst

None: NoneOption<any> = ...

The singleton instance representing None, an Option with no value. This constant is used to represent the absence of a value in operations that may not always produce a value.

const option = None;
console.log(option.isNone()); // Outputs: true