Interface ShortToIntFunction
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface to apply a function to a single
short
input and produce a single int
result.-
Method Summary
-
Method Details
-
applyAsInt
int applyAsInt(short value) Apply this function tovalue
.- Parameters:
value
- Theshort
input- Returns:
- The
int
result
-