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