Protected
constructorProtected
Initializes a new instance with the provided value, which can be null
or undefined
.
The initial value, potentially null
or undefined
.
to prevent direct instantiation from outside the class.
Checks whether this instance is equal to another, optionally using a custom comparator.
true
if both instances are equal; otherwise, false
.
Applies a predicate to the contained value if present, returning an instance containing the value only if the predicate is satisfied.
An instance containing the value if the predicate is satisfied; otherwise, an instance representing no value.
Applies a flat-mapping function to the contained value if present, returning the direct result of the function without additional wrapping.
The result of the mapping function, or an instance representing no value if the original instance does not contain a value.
Applies a mapping function to the contained value if present, wrapping the result in a new instance if the result is non-null.
An instance containing the result of the mapping function if the result is non-null; otherwise, an instance representing no value.
Retrieves the contained value if present; otherwise, invokes a supplier function and returns its result.
The contained value if present; otherwise, the result of the supplier function.
Retrieves the contained value if present; otherwise, throws an error provided by a supplier or a message.
Optional
messageOrErrorSupplier: string | () => EA string message or a supplier function that provides the error to be thrown.
The contained value if present; otherwise, throws the supplied error.
Converts the instance to a Promise
.
Optional
messageOrErrorSupplier: string | () => EA string message or a supplier function that provides the error if the value is empty.
A Promise
that resolves with the contained value or rejects with the error.
Static
emptyStatic
isStatic
ofWraps a given value in an instance if the value is non-null; otherwise, returns an instance representing no value.
The possibly-null value to wrap.
An instance containing the value if non-null; otherwise, an instance representing no value.
A TypeScript implementation inspired by Java's
Optional
, designed as a container object that may or may not contain a non-null value. It offers methods for handling the value's presence or absence in a more expressive and safer way, aiming to reduce the chances of null pointer exceptions.