Java Reference
Java Reference
IntIntToLongFunction
Detailed Description
Represents a function that accepts two int-valued arguments and produces a long-valued result.
This is the int
int
-to-long
primitive specialization for Function
.
This is a functional interface whose functional method is applyAsLong(long, long)
.
- See also
- Function
- IntToLongFunction.
Definition at line 27 of file IntIntToLongFunction.java.
Public Member Functions | |
long | applyAsLong (int left, int right) |
Applies this function to the given arguments. More... | |
Member Function Documentation
◆ applyAsLong()
long applyAsLong | ( | int | left, |
int | right | ||
) |
Applies this function to the given arguments.
- Parameters
-
left the first argument right the second argument
- Returns
- the function result
The documentation for this interface was generated from the following file: