Const
The singleton instance representing None (an empty Optional).
const someValue = Optional.some({ id: 1 });const noneValue = Optional.none;assert.isTrue(Optional.isSome(someValue));assert.isTrue(Optional.isNone(noneValue)); Copy
const someValue = Optional.some({ id: 1 });const noneValue = Optional.none;assert.isTrue(Optional.isSome(someValue));assert.isTrue(Optional.isNone(noneValue));
The singleton instance representing None (an empty Optional).