Class Choice6<A,B,C,D,E,F>
- java.lang.Object
-
- com.jnape.palatable.lambda.adt.choice.Choice6<A,B,C,D,E,F>
-
- Type Parameters:
A
- the first possible typeB
- the second possible typeC
- the third possible typeD
- the fourth possible typeE
- the fifth possible typeF
- the sixth possible type
- All Implemented Interfaces:
CoProduct6<A,B,C,D,E,F,Choice6<A,B,C,D,E,F>>
,Applicative<F,Choice6<A,B,C,D,E,?>>
,Bifunctor<E,F,Choice6<A,B,C,D,?,?>>
,BoundedBifunctor<E,F,java.lang.Object,java.lang.Object,Choice6<A,B,C,D,?,?>>
,Functor<F,Choice6<A,B,C,D,E,?>>
,Monad<F,Choice6<A,B,C,D,E,?>>
,MonadRec<F,Choice6<A,B,C,D,E,?>>
,Traversable<F,Choice6<A,B,C,D,E,?>>
- Direct Known Subclasses:
Choice6._A
,Choice6._B
,Choice6._C
,Choice6._D
,Choice6._E
,Choice6._F
public abstract class Choice6<A,B,C,D,E,F> extends java.lang.Object implements CoProduct6<A,B,C,D,E,F,Choice6<A,B,C,D,E,F>>, MonadRec<F,Choice6<A,B,C,D,E,?>>, Bifunctor<E,F,Choice6<A,B,C,D,?,?>>, Traversable<F,Choice6<A,B,C,D,E,?>>
Canonical ADT representation ofCoProduct6
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
Choice6._A<A,B,C,D,E,F>
private static class
Choice6._B<A,B,C,D,E,F>
private static class
Choice6._C<A,B,C,D,E,F>
private static class
Choice6._D<A,B,C,D,E,F>
private static class
Choice6._E<A,B,C,D,E,F>
private static class
Choice6._F<A,B,C,D,E,F>
-
Constructor Summary
Constructors Modifier Constructor Description private
Choice6()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <A,B,C,D,E,F>
Choice6<A,B,C,D,E,F>a(A a)
Static factory method for wrapping a value of typeA
in aChoice6
.static <A,B,C,D,E,F>
Choice6<A,B,C,D,E,F>b(B b)
Static factory method for wrapping a value of typeB
in aChoice6
.<G,H>
Choice6<A,B,C,D,G,H>biMap(Fn1<? super E,? extends G> lFn, Fn1<? super F,? extends H> rFn)
Dually map covariantly over both the left and right parameters.<G> Choice6<A,B,C,D,G,F>
biMapL(Fn1<? super E,? extends G> fn)
Covariantly map over the left parameter.<G> Choice6<A,B,C,D,E,G>
biMapR(Fn1<? super F,? extends G> fn)
Covariantly map over the right parameter.static <A,B,C,D,E,F>
Choice6<A,B,C,D,E,F>c(C c)
Static factory method for wrapping a value of typeC
in aChoice6
.Choice5<A,B,C,D,E>
converge(Fn1<? super F,? extends CoProduct5<A,B,C,D,E,?>> convergenceFn)
Converge this coproduct down to a lower order coproduct by mapping the last possible type into an earlier possible type.static <A,B,C,D,E,F>
Choice6<A,B,C,D,E,F>d(D d)
Static factory method for wrapping a value of typeD
in aChoice6
.<G> Choice6<A,B,C,D,E,G>
discardL(Applicative<G,Choice6<A,B,C,D,E,?>> appB)
Sequence both thisApplicative
andappB
, discarding thisApplicative's
result and returningappB
.<G> Choice6<A,B,C,D,E,F>
discardR(Applicative<G,Choice6<A,B,C,D,E,?>> appB)
Sequence both thisApplicative
andappB
, discardingappB's
result and returning thisApplicative
.<G> Choice7<A,B,C,D,E,F,G>
diverge()
Diverge this coproduct by introducing another possible type that it could represent.static <A,B,C,D,E,F>
Choice6<A,B,C,D,E,F>e(E e)
Static factory method for wrapping a value of typeE
in aChoice6
.static <A,B,C,D,E,F>
Choice6<A,B,C,D,E,F>f(F f)
Static factory method for wrapping a value of typeF
in aChoice6
.<G> Choice6<A,B,C,D,E,G>
flatMap(Fn1<? super F,? extends Monad<G,Choice6<A,B,C,D,E,?>>> fn)
Chain dependent computations that may continue or short-circuit based on previous results.<G> Choice6<A,B,C,D,E,G>
fmap(Fn1<? super F,? extends G> fn)
Covariantly transmute this functor's parameter using the given mapping function.<G> Lazy<Choice6<A,B,C,D,E,G>>
lazyZip(Lazy<? extends Applicative<Fn1<? super F,? extends G>,Choice6<A,B,C,D,E,?>>> lazyAppFn)
Given alazy
instance of this applicative over a mapping function, "zip" the two instances together using whatever application semantics the current applicative supports.Tuple6<Maybe<A>,Maybe<B>,Maybe<C>,Maybe<D>,Maybe<E>,Maybe<F>>
project()
Specialize this choice's projection to aTuple6
.<G> Choice6<A,B,C,D,E,G>
pure(G g)
Lift the valueb
into this applicative functor.static <A,B,C,D,E>
Pure<Choice6<A,B,C,D,E,?>>pureChoice()
<G> Choice6<A,B,C,D,E,G>
trampolineM(Fn1<? super F,? extends MonadRec<RecursiveResult<F,G>,Choice6<A,B,C,D,E,?>>> fn)
Given some operation yielding aRecursiveResult
inside thisMonadRec
, internally trampoline the operation until it yields atermination
instruction.<G,App extends Applicative<?,App>,TravB extends Traversable<G,Choice6<A,B,C,D,E,?>>,AppTrav extends Applicative<TravB,App>>
AppTravtraverse(Fn1<? super F,? extends Applicative<G,App>> fn, Fn1<? super TravB,? extends AppTrav> pure)
Applyfn
to each element of this traversable from left to right, and collapse the results into a single resulting applicative, potentially with the assistance of the applicative's pure function.<G> Choice6<A,B,C,D,E,G>
zip(Applicative<Fn1<? super F,? extends G>,Choice6<A,B,C,D,E,?>> appFn)
Given another instance of this applicative over a mapping function, "zip" the two instances together using whatever application semantics the current applicative supports.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
project
public Tuple6<Maybe<A>,Maybe<B>,Maybe<C>,Maybe<D>,Maybe<E>,Maybe<F>> project()
Specialize this choice's projection to aTuple6
.
-
diverge
public <G> Choice7<A,B,C,D,E,F,G> diverge()
Diverge this coproduct by introducing another possible type that it could represent.
-
converge
public Choice5<A,B,C,D,E> converge(Fn1<? super F,? extends CoProduct5<A,B,C,D,E,?>> convergenceFn)
Converge this coproduct down to a lower order coproduct by mapping the last possible type into an earlier possible type.
-
fmap
public <G> Choice6<A,B,C,D,E,G> fmap(Fn1<? super F,? extends G> fn)
Covariantly transmute this functor's parameter using the given mapping function. Generally this method is specialized to return an instance of the class implementing Functor.- Specified by:
fmap
in interfaceApplicative<A,B>
- Specified by:
fmap
in interfaceFunctor<A,B>
- Specified by:
fmap
in interfaceMonad<A,B>
- Specified by:
fmap
in interfaceMonadRec<A,B>
- Specified by:
fmap
in interfaceTraversable<A,B>
- Type Parameters:
G
- the new parameter type- Parameters:
fn
- the mapping function- Returns:
- a functor over B (the new parameter type)
-
biMapL
public <G> Choice6<A,B,C,D,G,F> biMapL(Fn1<? super E,? extends G> fn)
Covariantly map over the left parameter.
-
biMapR
public <G> Choice6<A,B,C,D,E,G> biMapR(Fn1<? super F,? extends G> fn)
Covariantly map over the right parameter. For all bifunctors that are also functors, it should hold thatbiMapR(f) == fmap(f)
.
-
biMap
public <G,H> Choice6<A,B,C,D,G,H> biMap(Fn1<? super E,? extends G> lFn, Fn1<? super F,? extends H> rFn)
Dually map covariantly over both the left and right parameters. This is isomorphic tobiMapL(lFn).biMapR(rFn)
.- Specified by:
biMap
in interfaceBifunctor<A,B,C>
- Specified by:
biMap
in interfaceBoundedBifunctor<A,B,C,D,E>
- Type Parameters:
G
- the new left parameter typeH
- the new right parameter type- Parameters:
lFn
- the left parameter mapping functionrFn
- the right parameter mapping function- Returns:
- a bifunctor over C (the new left parameter type) and D (the new right parameter type)
-
pure
public <G> Choice6<A,B,C,D,E,G> pure(G g)
Lift the valueb
into this applicative functor.
-
zip
public <G> Choice6<A,B,C,D,E,G> zip(Applicative<Fn1<? super F,? extends G>,Choice6<A,B,C,D,E,?>> appFn)
Given another instance of this applicative over a mapping function, "zip" the two instances together using whatever application semantics the current applicative supports.
-
lazyZip
public <G> Lazy<Choice6<A,B,C,D,E,G>> lazyZip(Lazy<? extends Applicative<Fn1<? super F,? extends G>,Choice6<A,B,C,D,E,?>>> lazyAppFn)
Given alazy
instance of this applicative over a mapping function, "zip" the two instances together using whatever application semantics the current applicative supports. This is useful for applicatives that support lazy evaluation and early termination.- Specified by:
lazyZip
in interfaceApplicative<A,B>
- Specified by:
lazyZip
in interfaceMonad<A,B>
- Specified by:
lazyZip
in interfaceMonadRec<A,B>
- Type Parameters:
G
- the resulting applicative parameter type- Parameters:
lazyAppFn
- the lazy other applicative instance- Returns:
- the mapped applicative
- See Also:
Maybe
,Either
-
discardL
public <G> Choice6<A,B,C,D,E,G> discardL(Applicative<G,Choice6<A,B,C,D,E,?>> appB)
Sequence both thisApplicative
andappB
, discarding thisApplicative's
result and returningappB
. This is generally useful for sequentially performing side-effects.
-
discardR
public <G> Choice6<A,B,C,D,E,F> discardR(Applicative<G,Choice6<A,B,C,D,E,?>> appB)
Sequence both thisApplicative
andappB
, discardingappB's
result and returning thisApplicative
. This is generally useful for sequentially performing side-effects.
-
flatMap
public <G> Choice6<A,B,C,D,E,G> flatMap(Fn1<? super F,? extends Monad<G,Choice6<A,B,C,D,E,?>>> fn)
Chain dependent computations that may continue or short-circuit based on previous results.
-
trampolineM
public <G> Choice6<A,B,C,D,E,G> trampolineM(Fn1<? super F,? extends MonadRec<RecursiveResult<F,G>,Choice6<A,B,C,D,E,?>>> fn)
Given some operation yielding aRecursiveResult
inside thisMonadRec
, internally trampoline the operation until it yields atermination
instruction.Stack-safety depends on implementations guaranteeing that the growth of the call stack is a constant factor independent of the number of invocations of the operation. For various examples of how this can be achieved in stereotypical circumstances, see the referenced types.
- Specified by:
trampolineM
in interfaceMonadRec<A,B>
- Type Parameters:
G
- the ultimate resulting carrier type- Parameters:
fn
- the function to internally trampoline- Returns:
- the trampolined
MonadRec
- See Also:
for a basic implementation
,for a implementation
,for an implementation leveraging an already stack-safe
,for a implementation
-
traverse
public <G,App extends Applicative<?,App>,TravB extends Traversable<G,Choice6<A,B,C,D,E,?>>,AppTrav extends Applicative<TravB,App>> AppTrav traverse(Fn1<? super F,? extends Applicative<G,App>> fn, Fn1<? super TravB,? extends AppTrav> pure)
Applyfn
to each element of this traversable from left to right, and collapse the results into a single resulting applicative, potentially with the assistance of the applicative's pure function.- Specified by:
traverse
in interfaceTraversable<A,B>
- Type Parameters:
G
- the resulting element typeApp
- the result applicative typeTravB
- this Traversable instance over BAppTrav
- the full inferred resulting type from the traversal- Parameters:
fn
- the function to applypure
- the applicative pure function- Returns:
- the traversed Traversable, wrapped inside an applicative
-
a
public static <A,B,C,D,E,F> Choice6<A,B,C,D,E,F> a(A a)
Static factory method for wrapping a value of typeA
in aChoice6
.- Type Parameters:
A
- the first possible typeB
- the second possible typeC
- the third possible typeD
- the fourth possible typeE
- the fifth possible typeF
- the sixth possible type- Parameters:
a
- the value- Returns:
- the wrapped value as a
Choice6
<A, B, C, D, E, F>
-
b
public static <A,B,C,D,E,F> Choice6<A,B,C,D,E,F> b(B b)
Static factory method for wrapping a value of typeB
in aChoice6
.- Type Parameters:
A
- the first possible typeB
- the second possible typeC
- the third possible typeD
- the fourth possible typeE
- the fifth possible typeF
- the sixth possible type- Parameters:
b
- the value- Returns:
- the wrapped value as a
Choice6
<A, B, C, D, E, F>
-
c
public static <A,B,C,D,E,F> Choice6<A,B,C,D,E,F> c(C c)
Static factory method for wrapping a value of typeC
in aChoice6
.- Type Parameters:
A
- the first possible typeB
- the second possible typeC
- the third possible typeD
- the fourth possible typeE
- the fifth possible typeF
- the sixth possible type- Parameters:
c
- the value- Returns:
- the wrapped value as a
Choice6
<A, B, C, D, E, F>
-
d
public static <A,B,C,D,E,F> Choice6<A,B,C,D,E,F> d(D d)
Static factory method for wrapping a value of typeD
in aChoice6
.- Type Parameters:
A
- the first possible typeB
- the second possible typeC
- the third possible typeD
- the fourth possible typeE
- the fifth possible typeF
- the sixth possible type- Parameters:
d
- the value- Returns:
- the wrapped value as a
Choice6
<A, B, C, D, E, F>
-
e
public static <A,B,C,D,E,F> Choice6<A,B,C,D,E,F> e(E e)
Static factory method for wrapping a value of typeE
in aChoice6
.- Type Parameters:
A
- the first possible typeB
- the second possible typeC
- the third possible typeD
- the fourth possible typeE
- the fifth possible typeF
- the sixth possible type- Parameters:
e
- the value- Returns:
- the wrapped value as a
Choice6
<A, B, C, D, E, F>
-
f
public static <A,B,C,D,E,F> Choice6<A,B,C,D,E,F> f(F f)
Static factory method for wrapping a value of typeF
in aChoice6
.- Type Parameters:
A
- the first possible typeB
- the second possible typeC
- the third possible typeD
- the fourth possible typeE
- the fifth possible typeF
- the sixth possible type- Parameters:
f
- the value- Returns:
- the wrapped value as a
Choice6
<A, B, C, D, E, F>
-
-