StandardKt<T> extension

on
  • T

Methods

also(void block(T)) → T

Available on T, provided by the StandardKt extension

Calls the specified function block with this value as its argument and returns this value.
let<R>(R block(T)) → R

Available on T, provided by the StandardKt extension

Calls the specified function block with this value as its argument and returns its result.
takeIf(bool predicate(T)) → T?

Available on T, provided by the StandardKt extension

Returns this value if it satisfies the given predicate or null, if it doesn't.
takeUnless(bool predicate(T)) → T?

Available on T, provided by the StandardKt extension

Returns this value if it does not satisfy the given predicate or null, if it does.