T - the type of the object parameterR - the type of the result@FunctionalInterface public interface ObjLongFunction<T,R>
long.
This takes two arguments and returns an object result.
BiFunction| Modifier and Type | Method and Description |
|---|---|
default <V> ObjLongFunction<T,V> |
andThen(Function<? super R,? extends V> other)
Returns a new function that composes this function and the specified function.
|
R |
apply(T obj,
long value)
Applies the function.
|
R apply(T obj, long value)
obj - the first argumentvalue - the second argumentdefault <V> ObjLongFunction<T,V> andThen(Function<? super R,? extends V> other)
This returns a composed function that applies the input to this function and then converts the result using the specified function.
V - the result type of second functionother - the second functionNullPointerException - if the other function is nullCopyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.