Package io.deephaven.function
Interface ToShortFunction<T>
- Type Parameters:
T- the input type
- All Superinterfaces:
ToPrimitiveFunction<T>,TypedFunction<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A
short function.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.function.ToPrimitiveFunction
ToPrimitiveFunction.Visitor<T,R> -
Method Summary
Modifier and TypeMethodDescriptionshortapplyAsShort(T value) Applies this function to the given argument.static <T> ToShortFunction<T>cast()Assumes the object value is directly castable to a short.static <T,R> ToShortFunction<T> map(Function<? super T, ? extends R> f, ToShortFunction<? super R> g) Creates the function compositiong ∘ f.default ShortTypeThis function's return type.default <R> Rwalk(ToPrimitiveFunction.Visitor<T, R> visitor) Methods inherited from interface io.deephaven.function.ToPrimitiveFunction
walk
-
Method Details
-
cast
Assumes the object value is directly castable to a short. Equivalent tox -> (short)x.- Type Parameters:
T- the value type- Returns:
- the short function
-
map
static <T,R> ToShortFunction<T> map(Function<? super T, ? extends R> f, ToShortFunction<? super R> g) Creates the function compositiong ∘ f.Equivalent to
x -> g.applyAsShort(f.apply(x)).- Type Parameters:
T- the input typeR- the intermediate type- Parameters:
f- the inner functiong- the outer function- Returns:
- the short function
-
applyAsShort
Applies this function to the given argument.- Parameters:
value- the function argument- Returns:
- the function result
-
returnType
Description copied from interface:TypedFunctionThis function's return type.- Specified by:
returnTypein interfaceToPrimitiveFunction<T>- Specified by:
returnTypein interfaceTypedFunction<T>- Returns:
- the type
-
walk
- Specified by:
walkin interfaceToPrimitiveFunction<T>
-