Documentation / dataflow / com.femastudios.dataflow.javaSupport / Consumer
Go to reference

Consumer

@FunctionalInterface interface Consumer<in T>

The equivalent to java.util.function.Consumer. Useful on Android, since it supports Java 8 bytecode, but doesn't have the full Java 8 SDK.

Functions

accept

Performs this operation on the given argument.

abstract fun accept(t: T): Unit