sdk-common / com.tomtom.online.sdk.common.functional / Maybe / ifNothing

ifNothing

@NonNull abstract fun ifNothing(@NonNull action: Consumer0): Maybe<A>

Performs the provided action if the Maybe represents a Nothing. Note: If action throws, then this method may throw an Exception.

Parameters

action - Consumer0: a side-effect action to performs.

Return
Maybe<A>: a Maybe instance.