@FunctionalInterface interface Consumer3<T : Any!, R : Any!, S : Any!>
Represents a operation that accepts a three input arguments and doesn't return any result.
| abstract fun accept(first: T, second: R, third: S): UnitPerforms this operation on the given three arguments. |