Consumer

fun interface Consumer<in T>

Interface describing the operation which receives the argument value and returns nothing.

Functions

Link copied to clipboard
abstract fun accept(t: T)

Conducts operation with the given argument.