ItBlock

fun interface ItBlock<in It>(source)

Helper for non-Kotlin consumers instead of using

(T) -> Unit

which would force a return of Unit.

e.g. (Kotlin)

My.Builder {
    it.add(My.Factory) { s -> s.enable = true }
}

e.g. (Java)

My.Builder(b -> {
    b.add(My.Factory.Companion, s -> {
        s.enable = true;
    });
});

See also

Inheritors

Functions

Link copied to clipboard
abstract operator fun invoke(it: It)