Interface CoProduct6<A,B,C,D,E,F,CP6 extends CoProduct6<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 typeCP6
- the recursive type of this coproduct (used for embedding)
- All Known Implementing Classes:
Choice6
,Choice6._A
,Choice6._B
,Choice6._C
,Choice6._D
,Choice6._E
,Choice6._F
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CoProduct6<A,B,C,D,E,F,CP6 extends CoProduct6<A,B,C,D,E,F,?>>
A generalization of the coproduct of six types.- See Also:
CoProduct2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CoProduct5<A,B,C,D,E,? extends CoProduct5<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.default <G> CoProduct7<A,B,C,D,E,F,G,? extends CoProduct7<A,B,C,D,E,F,G,?>>
diverge()
Diverge this coproduct by introducing another possible type that it could represent.default <R> R
embed(Fn1<? super CP6,? extends R> aFn, Fn1<? super CP6,? extends R> bFn, Fn1<? super CP6,? extends R> cFn, Fn1<? super CP6,? extends R> dFn, Fn1<? super CP6,? extends R> eFn, Fn1<? super CP6,? extends R> fFn)
Embed this coproduct inside another value; that is, given morphisms from this coproduct toR
, apply the appropriate morphism to this coproduct as a whole.<R> R
match(Fn1<? super A,? extends R> aFn, Fn1<? super B,? extends R> bFn, Fn1<? super C,? extends R> cFn, Fn1<? super D,? extends R> dFn, Fn1<? super E,? extends R> eFn, Fn1<? super F,? extends R> fFn)
Type-safe convergence requiring a match against all potential types.default Product6<Maybe<A>,Maybe<B>,Maybe<C>,Maybe<D>,Maybe<E>,Maybe<F>>
project()
Project this coproduct onto a product.default Maybe<A>
projectA()
Convenience method for projecting this coproduct onto a product and then extracting the first slot value.default Maybe<B>
projectB()
Convenience method for projecting this coproduct onto a product and then extracting the second slot value.default Maybe<C>
projectC()
Convenience method for projecting this coproduct onto a product and then extracting the third slot value.default Maybe<D>
projectD()
Convenience method for projecting this coproduct onto a product and then extracting the fourth slot value.default Maybe<E>
projectE()
Convenience method for projecting this coproduct onto a product and then extracting the fifth slot value.default Maybe<F>
projectF()
Convenience method for projecting this coproduct onto a product and then extracting the sixth slot value.
-
-
-
Method Detail
-
match
<R> R match(Fn1<? super A,? extends R> aFn, Fn1<? super B,? extends R> bFn, Fn1<? super C,? extends R> cFn, Fn1<? super D,? extends R> dFn, Fn1<? super E,? extends R> eFn, Fn1<? super F,? extends R> fFn)
Type-safe convergence requiring a match against all potential types.- Type Parameters:
R
- result type- Parameters:
aFn
- morphismA -> R
bFn
- morphismB -> R
cFn
- morphismC -> R
dFn
- morphismD -> R
eFn
- morphismE -> R
fFn
- morphismF -> R
- Returns:
- the result of applying the appropriate morphism from whichever type is represented by this coproduct to R
- See Also:
CoProduct2.match(Fn1, Fn1)
-
diverge
default <G> CoProduct7<A,B,C,D,E,F,G,? extends CoProduct7<A,B,C,D,E,F,G,?>> diverge()
Diverge this coproduct by introducing another possible type that it could represent.- Type Parameters:
G
- the additional possible type of this coproduct- Returns:
- a Coproduct7<A, B, C, D, E, F, G>
- See Also:
CoProduct2.diverge()
-
converge
default CoProduct5<A,B,C,D,E,? extends CoProduct5<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.- Parameters:
convergenceFn
- morphismF ->
CoProduct5
<A, B, C, D, E>- Returns:
- a
CoProduct5
<A, B, C, D, E>
-
project
default Product6<Maybe<A>,Maybe<B>,Maybe<C>,Maybe<D>,Maybe<E>,Maybe<F>> project()
Project this coproduct onto a product.- Returns:
- a product of the coproduct projection
- See Also:
CoProduct2.project()
-
projectA
default Maybe<A> projectA()
Convenience method for projecting this coproduct onto a product and then extracting the first slot value.- Returns:
- an optional value representing the projection of the "a" type index
-
projectB
default Maybe<B> projectB()
Convenience method for projecting this coproduct onto a product and then extracting the second slot value.- Returns:
- an optional value representing the projection of the "b" type index
-
projectC
default Maybe<C> projectC()
Convenience method for projecting this coproduct onto a product and then extracting the third slot value.- Returns:
- an optional value representing the projection of the "c" type index
-
projectD
default Maybe<D> projectD()
Convenience method for projecting this coproduct onto a product and then extracting the fourth slot value.- Returns:
- an optional value representing the projection of the "d" type index
-
projectE
default Maybe<E> projectE()
Convenience method for projecting this coproduct onto a product and then extracting the fifth slot value.- Returns:
- an optional value representing the projection of the "e" type index
-
projectF
default Maybe<F> projectF()
Convenience method for projecting this coproduct onto a product and then extracting the sixth slot value.- Returns:
- an optional value representing the projection of the "f" type index
-
embed
default <R> R embed(Fn1<? super CP6,? extends R> aFn, Fn1<? super CP6,? extends R> bFn, Fn1<? super CP6,? extends R> cFn, Fn1<? super CP6,? extends R> dFn, Fn1<? super CP6,? extends R> eFn, Fn1<? super CP6,? extends R> fFn)
Embed this coproduct inside another value; that is, given morphisms from this coproduct toR
, apply the appropriate morphism to this coproduct as a whole. Likematch(com.jnape.palatable.lambda.functions.Fn1<? super A, ? extends R>, com.jnape.palatable.lambda.functions.Fn1<? super B, ? extends R>, com.jnape.palatable.lambda.functions.Fn1<? super C, ? extends R>, com.jnape.palatable.lambda.functions.Fn1<? super D, ? extends R>, com.jnape.palatable.lambda.functions.Fn1<? super E, ? extends R>, com.jnape.palatable.lambda.functions.Fn1<? super F, ? extends R>)
, but without unwrapping the value.- Type Parameters:
R
- result type- Parameters:
aFn
- morphismA v B v C v D v E v F -> R
, applied in theA
casebFn
- morphismA v B v C v D v E v F -> R
, applied in theB
casecFn
- morphismA v B v C v D v E v F -> R
, applied in theC
casedFn
- morphismA v B v C v D v E v F -> R
, applied in theD
caseeFn
- morphismA v B v C v D v E v F -> R
, applied in theE
casefFn
- morphismA v B v C v D v E v F -> R
, applied in theF
case- Returns:
- the result of applying the appropriate morphism to this coproduct
-
-