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
apply(value: Long, t: T)

Performs this operation on the given arguments.

Public methods

apply

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