The type of the contained value
Type guard that always returns false for Some instances.
Always false, indicating this Option contains a value
Gets the contained value directly. This is a convenience method for accessing the wrapped value.
The contained value
Returns the contained value. This method never throws since Some always contains a value.
The contained value
Returns the contained value. This method never returns undefined since Some always contains a value.
The contained value
A class representing an Option that contains a value. This is the "Some" variant of the Option type, indicating that a value exists.