BiConsumer

fun interface BiConsumer<T, R>

Reimplementation of the Java SDK's java.util.function.BiConsumer that isn't supported across all Android API levels.

Functions

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

Method to receive the values to consume.