Added in API level 10000

LongObjFunction


public interface LongObjFunction

android.util.function.LongObjFunction<T, R>


Represents a function that accepts a long-valued argument and an object-valued argument, and produces a result.

Summary

Public methods

abstract R apply(long value, T t)

Performs this operation on the given arguments.

Public methods

apply

Added in API level 10000
public abstract R apply (long value, 
                T t)

Performs this operation on the given arguments.

Parameters
value long: the first input argument

t T: the second input argument

Returns
R the operation result