Uses of Interface
com.jnape.palatable.lambda.adt.product.Product7
-
-
Uses of Product7 in com.jnape.palatable.lambda.adt.coproduct
Methods in com.jnape.palatable.lambda.adt.coproduct that return Product7 Modifier and Type Method Description default Product7<Maybe<A>,Maybe<B>,Maybe<C>,Maybe<D>,Maybe<E>,Maybe<F>,Maybe<G>>
CoProduct7. project()
Project this coproduct onto a product. -
Uses of Product7 in com.jnape.palatable.lambda.adt.hlist
Classes in com.jnape.palatable.lambda.adt.hlist that implement Product7 Modifier and Type Class Description class
Tuple7<_1,_2,_3,_4,_5,_6,_7>
A 7-element tuple product type, implemented as a specialized HList.class
Tuple8<_1,_2,_3,_4,_5,_6,_7,_8>
An 8-element tuple product type, implemented as a specialized HList. -
Uses of Product7 in com.jnape.palatable.lambda.adt.product
Subinterfaces of Product7 in com.jnape.palatable.lambda.adt.product Modifier and Type Interface Description interface
Product8<_1,_2,_3,_4,_5,_6,_7,_8>
A product with eight values.Methods in com.jnape.palatable.lambda.adt.product that return Product7 Modifier and Type Method Description default Product7<_2,_1,_3,_4,_5,_6,_7>
Product7. invert()
static <_1,_2,_3,_4,_5,_6,_7>
Product7<_1,_2,_3,_4,_5,_6,_7>Product7. product(_1 _1, _2 _2, _3 _3, _4 _4, _5 _5, _6 _6, _7 _7)
Static factory method for creating a genericProduct7
.default Product7<_2,_3,_1,_4,_5,_6,_7>
Product7. rotateL3()
default Product7<_2,_3,_4,_1,_5,_6,_7>
Product7. rotateL4()
default Product7<_2,_3,_4,_5,_1,_6,_7>
Product7. rotateL5()
default Product7<_2,_3,_4,_5,_6,_1,_7>
Product7. rotateL6()
default Product7<_2,_3,_4,_5,_6,_7,_1>
Product7. rotateL7()
Rotate the first seven values of this product one slot to the left.default Product7<_3,_1,_2,_4,_5,_6,_7>
Product7. rotateR3()
default Product7<_4,_1,_2,_3,_5,_6,_7>
Product7. rotateR4()
default Product7<_5,_1,_2,_3,_4,_6,_7>
Product7. rotateR5()
default Product7<_6,_1,_2,_3,_4,_5,_7>
Product7. rotateR6()
default Product7<_7,_1,_2,_3,_4,_5,_6>
Product7. rotateR7()
Rotate the first seven values of this product one slot to the right. -
Uses of Product7 in com.jnape.palatable.lambda.functions.builtin.fn2
Methods in com.jnape.palatable.lambda.functions.builtin.fn2 that return types with arguments of type Product7 Modifier and Type Method Description static <A,B,C,D,E,F,G,H>
Fn1<Product7<A,B,C,D,E,F,G>,H>Into7. into7(Fn7<? super A,? super B,? super C,? super D,? super E,? super F,? super G,? extends H> fn)
Methods in com.jnape.palatable.lambda.functions.builtin.fn2 with parameters of type Product7 Modifier and Type Method Description H
Into7. checkedApply(Fn7<? super A,? super B,? super C,? super D,? super E,? super F,? super G,? extends H> fn, Product7<A,B,C,D,E,F,G> product)
static <A,B,C,D,E,F,G,H>
HInto7. into7(Fn7<? super A,? super B,? super C,? super D,? super E,? super F,? super G,? extends H> fn, Product7<A,B,C,D,E,F,G> product)
-