Maybe

sealed interface Maybe<out Element>(source)

Container interface that is used to describe that there is either some value wrapped in the data class Some or the None data object. It's a copy of Option from Rust stdlib.

Why not just use E? instead of Maybe<E>? The reason is simple. If you E is nullable and you have possibility of having either element of type E or a null, then you won't distinguish null as possible value and null as absence of such value. That's why you should write Maybe<E> and then you'll be able to distinguish null from None.

Inheritors

Functions

Link copied to clipboard
inline fun <Element, Result> Maybe<Element>.computeOn(compute: (Element) -> Result): Maybe<Result>

Computes the compute on the value and returns it wrapped in Some if the value is present or just returns None otherwise.

Link copied to clipboard
inline fun <Element, Result> Maybe<Element>.computeOnOrDefault(default: Result, compute: (Element) -> Result): Result

Computes the compute on the value and returns it if the value is present or just returns default one otherwise.

Link copied to clipboard
inline fun <Element, Result> Maybe<Element>.computeOnOrElse(default: () -> Result, compute: (Element) -> Result): Result

Computes the compute on the value and returns it if the value is present or just computes and returns default one otherwise.

Link copied to clipboard

Returns the wrapped in Some instance of type Maybe<E> if it is present or None otherwise.

Link copied to clipboard
fun Maybe<*>.isNone(): Boolean

Returns true if the value is absent.

Link copied to clipboard
fun Maybe<*>.isSome(): Boolean

Returns true if the value is present.

Link copied to clipboard

Returns the value if it is present or default one otherwise.

Link copied to clipboard
inline fun <Element> Maybe<Element>.orElse(default: () -> Element): Element

Returns the value if it is present or computes and returns default one otherwise.

Link copied to clipboard
inline fun <Element> Maybe<Element>.orThrow(error: () -> Throwable): Element

Returns the value if it is present or throws the provided exception otherwise.