- All Superinterfaces:
Applicative<Fn1<B,Fn1<B,B>>,Fn1<A,?>>
, Cartesian<A,Fn1<B,Fn1<B,B>>,Fn1<?,?>>
, Cocartesian<A,Fn1<B,Fn1<B,B>>,Fn1<?,?>>
, Contravariant<A,Profunctor<?,Fn1<B,Fn1<B,B>>,Fn1<?,?>>>
, Fn1<A,Fn1<B,Fn1<B,B>>>
, Fn2<A,B,Fn1<B,B>>
, Fn3<A,B,B,B>
, Functor<Fn1<B,Fn1<B,B>>,Fn1<A,?>>
, Monad<Fn1<B,Fn1<B,B>>,Fn1<A,?>>
, MonadReader<A,Fn1<B,Fn1<B,B>>,Fn1<A,?>>
, MonadRec<Fn1<B,Fn1<B,B>>,Fn1<A,?>>
, MonadWriter<A,Fn1<B,Fn1<B,B>>,Fn1<A,?>>
, Profunctor<A,Fn1<B,Fn1<B,B>>,Fn1<?,?>>
, SemigroupFactory<A,B>
- All Known Implementing Classes:
AddAll
, Compose
, EndoK
, LeftAll
, LeftAny
, Present
, RightAll
, RightAny
, RunAll
-
Method Summary
Partially apply this function by taking its first argument.
Invoke this function with the given arguments.
Invoke this function with the given argument, potentially throwing any
Throwable
.
Methods inherited from interface com.jnape.palatable.lambda.functions.Fn1
andThen, carry, cartesian, censor, choose, cocartesian, diMap, diMapR, discardL, flatMap, fmap, lazyZip, listens, local, pure, self, thunk, toFunction, trampolineM, zip, zip
Methods inherited from interface com.jnape.palatable.lambda.functions.Fn2
toBiFunction
Methods inherited from interface com.jnape.palatable.lambda.functor.Functor
coerce
-
Method Details
-
-
apply
default B apply(A a,
B b,
B c)
Description copied from interface: Fn3
Invoke this function with the given arguments.
- Specified by:
apply
in interface Fn3<A,B,B,B>
- Parameters:
a
- the first argument
b
- the second argument
c
- the third argument
- Returns:
- the result of the function application
-
apply
Description copied from interface: Fn3
Partially apply this function by taking its first argument.
- Specified by:
apply
in interface Fn1<A,B>
- Specified by:
apply
in interface Fn2<A,B,Fn1<B,B>>
- Specified by:
apply
in interface Fn3<A,B,B,B>
- Specified by:
apply
in interface SemigroupFactory<A,B>
- Parameters:
a
- the first argument
- Returns:
- an
Fn2
<B, C, D>