MaybeApply<U, T> extension

Extension on Maybe Functions for applying them.

on

Methods

apply(Maybe<T> arg) Maybe<U>

Available on Maybe<U Function(T)>, provided by the MaybeApply extension

Apply the arg arg to this Function only in case both the arg and Function are available.

Operators

operator >>(Maybe<T> arg) Maybe<U>

Available on Maybe<U Function(T)>, provided by the MaybeApply extension

Apply the arg arg to this Function only in case both the arg and Function are available.