com.koloboke.function
Interface ShortLongToLongFunction
public interface ShortLongToLongFunction
Represents a function that accepts
a short
-valued and
a long
-valued argument
and produces a long
-valued result.
This is the (short, long, long)
specialization of BiFunction
.
- See Also:
BiFunction
Method Summary |
long |
applyAsLong(short a,
long b)
Applies this function to the given arguments. |
applyAsLong
long applyAsLong(short a,
long b)
- Applies this function to the given arguments.
- Parameters:
a
- the first function argumentb
- the second function argument
- Returns:
- the function result