All Methods Static Methods Instance Methods Abstract Methods Default Methods
| Modifier and Type |
Method and Description |
default <U> Function2<T,V,U> |
andThen(Function1<R,U> after) |
R |
apply(T t,
V v) |
default <U> Function1<U,R> |
compose(Function1<U,T> beforeT,
Function1<U,V> beforeV) |
default Function1<T,Function1<V,R>> |
curried() |
default Function2<T,V,Either<java.lang.Throwable,R>> |
liftEither() |
default Function2<T,V,Option<R>> |
liftOption() |
default Function2<T,V,Try<R>> |
liftTry() |
static <T,V,R> Function2<T,V,R> |
of(Function2<T,V,R> reference) |
default Function1<Tuple2<T,V>,R> |
tupled() |