@FunctionalInterface interface IOConsumer<T : Any>
Represents an operation that accepts a single input argument and returns no result.
accept
abstract fun accept(t: T): Unit
Performs this operation on the given argument.