public abstract class Function2<A,B,C> extends Object
Function2.X| Modifier and Type | Class and Description |
|---|---|
static class |
Function2.X<A,B,C>
Version of
Function2 that allows for throwing a checked exception. |
| Constructor and Description |
|---|
Function2() |
| Modifier and Type | Method and Description |
|---|---|
abstract C |
apply(A a,
B b)
Apply function to
a and b. |
Function<A,Function<B,C>> |
curry()
Currying.
|
Function<B,C> |
curry(A a)
Currying.
|
Function2<B,A,C> |
flip()
Argument flipping.
|
Effect2<A,B> |
toEffect()
Turn this function into an effect by discarding its result.
|
Function<Tuple<A,B>,C> |
tupled() |
Copyright © 2009–2021 Opencast Project. All rights reserved.