Omitted

class Omitted<out T> : Omissible<T>

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
inline fun <T, R> Omissible<T>.ifPresent(function: (T) -> R): R?
Link copied to clipboard
inline fun <T, R> Omissible<T?>.ifPresentAndNotNull(function: (T) -> R): R?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <T, R> Omissible<T>.map(mapper: (T) -> R): Omissible<R>
Link copied to clipboard
fun <T> Omissible<T>.takeIfPresent(predicate: (T) -> Boolean = { true }): T?
Link copied to clipboard
open override fun toString(): String