IOConsumer

fun interface IOConsumer<T>

An I/O operation with a single input that can throw an IOException. (Functional interface)

Functions

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

Performs this operation on the given input.