Type guard that always returns true for None instances.
Always true, indicating this Option contains no value
Type guard that always returns false for None instances.
Always false, indicating this Option contains no value
Returns undefined since this Option contains no value. This provides interoperability with standard JavaScript nullable patterns.
Always undefined
A class representing an Option that does not contain a value. This is the "None" variant of the Option type, indicating the absence of a value.