Added in API level 10000
LongObjFunction
@FunctionalInterface interface LongObjFunction<T : Any!, R : Any!>
| android.util.function.LongObjFunction |
Represents a function that accepts a long-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: Long,
t: T
): R
Performs this operation on the given arguments.
| Parameters | |
|---|---|
value |
Long: the first input argument |
t |
T: the second input argument |
| Return | |
|---|---|
R |
the operation result |