Added in version 37.2
IntObjFunction
public
interface
IntObjFunction
| android.util.function.IntObjFunction<T, R> |
Represents a function that accepts an int-valued argument and an object-valued argument,
and produces a result.
Summary
Public methods | |
|---|---|
abstract
R
|
apply(int value, T t)
Performs this operation on the given arguments. |
Public methods
apply
Added in version 37.2
public abstract R apply (int value,
T t)Performs this operation on the given arguments.
| Parameters | |
|---|---|
value |
int: the first input argument |
t |
T: the second input argument |
| Returns | |
|---|---|
R |
the operation result |