sdk-common / com.tomtom.online.sdk.common.functional / Consumer3

Consumer3

@FunctionalInterface interface Consumer3<T : Any!, R : Any!, S : Any!>

Represents a operation that accepts a three input arguments and doesn't return any result.

Functions

accept

abstract fun accept(first: T, second: R, third: S): Unit

Performs this operation on the given three arguments.