ThisBlock

fun interface ThisBlock<in This : Any>(source)

Helper for non-Kotlin consumers instead of using

T.() -> Unit

which would force a return of Unit.

e.g. (Kotlin)

My.Builder {
    add(My.Factory) { enable = true }
}

e.g. (Java)

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

See also

Functions

Link copied to clipboard
abstract operator fun This.invoke()