IntObjFunction


@FunctionalInterface interface IntObjFunction<T : Any!, R : Any!>
android.util.function.IntObjFunction

Represents a function that accepts an int-valued argument and an object-valued argument, and produces a result.

Summary

Public methods
abstract R
apply(value: Int, t: T)

Performs this operation on the given arguments.

Public methods

apply

abstract fun apply(
    value: Int,
    t: T
): R

Performs this operation on the given arguments.

Parameters
value Int: the first input argument
t T: the second input argument
Return
R the operation result