Added in API level 10000
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 API level 10000
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 |