Added in API level 10000
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 |
Performs this operation on the given arguments. |
Public methods
apply
Added in API level 10000
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 |