| Package | Description |
|---|---|
| org.jooq.lambda |
This package contains useful extensions for interoperation with Java 8's lambda expressions and
FunctionalInterface types. |
| org.jooq.lambda.function |
This package contains function types of various degrees.
|
| org.jooq.lambda.tuple |
This package contains tuple types of various degrees.
|
| Modifier and Type | Method and Description |
|---|---|
default <R1,R2,R3,R4,R5,R6,A1,A2,A3,A4,A5,A6> |
Collectable.collect(java.util.stream.Collector<? super T,A1,R1> collector1,
java.util.stream.Collector<? super T,A2,R2> collector2,
java.util.stream.Collector<? super T,A3,R3> collector3,
java.util.stream.Collector<? super T,A4,R4> collector4,
java.util.stream.Collector<? super T,A5,R5> collector5,
java.util.stream.Collector<? super T,A6,R6> collector6)
Collect this collectable into 6
Collectors. |
| Modifier and Type | Method and Description |
|---|---|
static <T1,T2,T3,T4,T5,T6> |
Seq.crossApply(Iterable<? extends T1> iterable,
java.util.function.Function<? super T1,? extends Iterable<? extends T2>> function2,
java.util.function.Function<? super T2,? extends Iterable<? extends T3>> function3,
java.util.function.Function<? super T3,? extends Iterable<? extends T4>> function4,
java.util.function.Function<? super T4,? extends Iterable<? extends T5>> function5,
java.util.function.Function<? super T5,? extends Iterable<? extends T6>> function6)
Cross apply 6 functions to a stream.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.crossApply(Seq<? extends T1> seq,
java.util.function.Function<? super T1,? extends Seq<? extends T2>> function2,
java.util.function.Function<? super T2,? extends Seq<? extends T3>> function3,
java.util.function.Function<? super T3,? extends Seq<? extends T4>> function4,
java.util.function.Function<? super T4,? extends Seq<? extends T5>> function5,
java.util.function.Function<? super T5,? extends Seq<? extends T6>> function6)
Cross apply 6 functions to a stream.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.crossApply(java.util.stream.Stream<? extends T1> stream,
java.util.function.Function<? super T1,? extends java.util.stream.Stream<? extends T2>> function2,
java.util.function.Function<? super T2,? extends java.util.stream.Stream<? extends T3>> function3,
java.util.function.Function<? super T3,? extends java.util.stream.Stream<? extends T4>> function4,
java.util.function.Function<? super T4,? extends java.util.stream.Stream<? extends T5>> function5,
java.util.function.Function<? super T5,? extends java.util.stream.Stream<? extends T6>> function6)
Cross apply 6 functions to a stream.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.crossJoin(Iterable<? extends T1> i1,
Iterable<? extends T2> i2,
Iterable<? extends T3> i3,
Iterable<? extends T4> i4,
Iterable<? extends T5> i5,
Iterable<? extends T6> i6)
Cross join 6 streams into one.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.crossJoin(Seq<? extends T1> s1,
Seq<? extends T2> s2,
Seq<? extends T3> s3,
Seq<? extends T4> s4,
Seq<? extends T5> s5,
Seq<? extends T6> s6)
Cross join 6 streams into one.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.crossJoin(java.util.stream.Stream<? extends T1> s1,
java.util.stream.Stream<? extends T2> s2,
java.util.stream.Stream<? extends T3> s3,
java.util.stream.Stream<? extends T4> s4,
java.util.stream.Stream<? extends T5> s5,
java.util.stream.Stream<? extends T6> s6)
Cross join 6 streams into one.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.outerApply(Iterable<? extends T1> iterable,
java.util.function.Function<? super T1,? extends Iterable<? extends T2>> function2,
java.util.function.Function<? super T2,? extends Iterable<? extends T3>> function3,
java.util.function.Function<? super T3,? extends Iterable<? extends T4>> function4,
java.util.function.Function<? super T4,? extends Iterable<? extends T5>> function5,
java.util.function.Function<? super T5,? extends Iterable<? extends T6>> function6)
Outer apply 6 functions to a stream.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.outerApply(Seq<? extends T1> seq,
java.util.function.Function<? super T1,? extends Seq<? extends T2>> function2,
java.util.function.Function<? super T2,? extends Seq<? extends T3>> function3,
java.util.function.Function<? super T3,? extends Seq<? extends T4>> function4,
java.util.function.Function<? super T4,? extends Seq<? extends T5>> function5,
java.util.function.Function<? super T5,? extends Seq<? extends T6>> function6)
Outer apply 6 functions to a stream.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.outerApply(java.util.stream.Stream<? extends T1> stream,
java.util.function.Function<? super T1,? extends java.util.stream.Stream<? extends T2>> function2,
java.util.function.Function<? super T2,? extends java.util.stream.Stream<? extends T3>> function3,
java.util.function.Function<? super T3,? extends java.util.stream.Stream<? extends T4>> function4,
java.util.function.Function<? super T4,? extends java.util.stream.Stream<? extends T5>> function5,
java.util.function.Function<? super T5,? extends java.util.stream.Stream<? extends T6>> function6)
Outer apply 6 functions to a stream.
|
default Seq<Tuple6<Window<T>,Window<T>,Window<T>,Window<T>,Window<T>,Window<T>>> |
Seq.window(WindowSpecification<T> specification1,
WindowSpecification<T> specification2,
WindowSpecification<T> specification3,
WindowSpecification<T> specification4,
WindowSpecification<T> specification5,
WindowSpecification<T> specification6)
Map this stream to a windowed stream with 6 distinct windows.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.zip(Iterable<? extends T1> i1,
Iterable<? extends T2> i2,
Iterable<? extends T3> i3,
Iterable<? extends T4> i4,
Iterable<? extends T5> i5,
Iterable<? extends T6> i6)
Zip 6 streams into one.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.zip(Seq<? extends T1> s1,
Seq<? extends T2> s2,
Seq<? extends T3> s3,
Seq<? extends T4> s4,
Seq<? extends T5> s5,
Seq<? extends T6> s6)
Zip 6 streams into one.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.zip(java.util.stream.Stream<? extends T1> s1,
java.util.stream.Stream<? extends T2> s2,
java.util.stream.Stream<? extends T3> s3,
java.util.stream.Stream<? extends T4> s4,
java.util.stream.Stream<? extends T5> s5,
java.util.stream.Stream<? extends T6> s6)
Zip 6 streams into one.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.zipAll(Iterable<? extends T1> s1,
Iterable<? extends T2> s2,
Iterable<? extends T3> s3,
Iterable<? extends T4> s4,
Iterable<? extends T5> s5,
Iterable<? extends T6> s6,
T1 default1,
T2 default2,
T3 default3,
T4 default4,
T5 default5,
T6 default6)
Zip two streams into one - by storing the corresponding elements from them in a tuple,
when one of streams will end - a default value for that stream will be provided instead -
so the resulting stream will be as long as the longest of the two streams.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.zipAll(Seq<? extends T1> s1,
Seq<? extends T2> s2,
Seq<? extends T3> s3,
Seq<? extends T4> s4,
Seq<? extends T5> s5,
Seq<? extends T6> s6,
T1 default1,
T2 default2,
T3 default3,
T4 default4,
T5 default5,
T6 default6)
Zip two streams into one - by storing the corresponding elements from them in a tuple,
when one of streams will end - a default value for that stream will be provided instead -
so the resulting stream will be as long as the longest of the two streams.
|
static <T1,T2,T3,T4,T5,T6> |
Seq.zipAll(java.util.stream.Stream<? extends T1> s1,
java.util.stream.Stream<? extends T2> s2,
java.util.stream.Stream<? extends T3> s3,
java.util.stream.Stream<? extends T4> s4,
java.util.stream.Stream<? extends T5> s5,
java.util.stream.Stream<? extends T6> s6,
T1 default1,
T2 default2,
T3 default3,
T4 default4,
T5 default5,
T6 default6)
Zip two streams into one - by storing the corresponding elements from them in a tuple,
when one of streams will end - a default value for that stream will be provided instead -
so the resulting stream will be as long as the longest of the two streams.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
Consumer6.accept(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Performs this operation on the given argument.
|
default Consumer3<T7,T8,T9> |
Consumer9.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer2<T7,T8> |
Consumer8.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer1<T7> |
Consumer7.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer0 |
Consumer6.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer10<T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> |
Consumer16.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer9<T7,T8,T9,T10,T11,T12,T13,T14,T15> |
Consumer15.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer8<T7,T8,T9,T10,T11,T12,T13,T14> |
Consumer14.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer7<T7,T8,T9,T10,T11,T12,T13> |
Consumer13.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer6<T7,T8,T9,T10,T11,T12> |
Consumer12.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer5<T7,T8,T9,T10,T11> |
Consumer11.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default Consumer4<T7,T8,T9,T10> |
Consumer10.acceptPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Let this consumer partially accept the arguments.
|
default R |
Function6.apply(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Apply this function to the arguments.
|
default Function3<T7,T8,T9,R> |
Function9.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function2<T7,T8,R> |
Function8.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function1<T7,R> |
Function7.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function0<R> |
Function6.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function10<T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,R> |
Function16.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function9<T7,T8,T9,T10,T11,T12,T13,T14,T15,R> |
Function15.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function8<T7,T8,T9,T10,T11,T12,T13,T14,R> |
Function14.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function7<T7,T8,T9,T10,T11,T12,T13,R> |
Function13.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function6<T7,T8,T9,T10,T11,T12,R> |
Function12.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function5<T7,T8,T9,T10,T11,R> |
Function11.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function4<T7,T8,T9,T10,R> |
Function10.applyPartially(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Partially apply this function to the arguments.
|
default Function3<T7,T8,T9,R> |
Function9.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function9.applyPartially(Tuple6) instead. |
default Function2<T7,T8,R> |
Function8.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function8.applyPartially(Tuple6) instead. |
default Function1<T7,R> |
Function7.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function7.applyPartially(Tuple6) instead. |
default Function0<R> |
Function6.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function6.applyPartially(Tuple6) instead. |
default Function10<T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,R> |
Function16.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function16.applyPartially(Tuple6) instead. |
default Function9<T7,T8,T9,T10,T11,T12,T13,T14,T15,R> |
Function15.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function15.applyPartially(Tuple6) instead. |
default Function8<T7,T8,T9,T10,T11,T12,T13,T14,R> |
Function14.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function14.applyPartially(Tuple6) instead. |
default Function7<T7,T8,T9,T10,T11,T12,T13,R> |
Function13.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function13.applyPartially(Tuple6) instead. |
default Function6<T7,T8,T9,T10,T11,T12,R> |
Function12.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function12.applyPartially(Tuple6) instead. |
default Function5<T7,T8,T9,T10,T11,R> |
Function11.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function11.applyPartially(Tuple6) instead. |
default Function4<T7,T8,T9,T10,R> |
Function10.curry(Tuple6<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6> args)
Deprecated.
- Use
Function10.applyPartially(Tuple6) instead. |
| Modifier and Type | Method and Description |
|---|---|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple6.clone() |
<T6> Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple5.concat(T6 value)
Concatenate a value to this tuple.
|
<T6> Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple5.concat(Tuple1<T6> tuple)
Concatenate a tuple to this tuple.
|
<T5,T6> Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple4.concat(Tuple2<T5,T6> tuple)
Concatenate a tuple to this tuple.
|
<T4,T5,T6> Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple3.concat(Tuple3<T4,T5,T6> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4,T5,T6> |
Tuple2.concat(Tuple4<T3,T4,T5,T6> tuple)
Concatenate a tuple to this tuple.
|
<T2,T3,T4,T5,T6> |
Tuple1.concat(Tuple5<T2,T3,T4,T5,T6> tuple)
Concatenate a tuple to this tuple.
|
<T1,T2,T3,T4,T5,T6> |
Tuple0.concat(Tuple6<T1,T2,T3,T4,T5,T6> tuple)
Concatenate a tuple to this tuple.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple9.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple8.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple7.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple6.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple16.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple15.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple14.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple13.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple12.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple11.limit6()
Limit this tuple to degree 6.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple10.limit6()
Limit this tuple to degree 6.
|
<U1> Tuple6<U1,T2,T3,T4,T5,T6> |
Tuple6.map1(java.util.function.Function<? super T1,? extends U1> function)
Apply attribute 1 as argument to a function and return a new tuple with the substituted argument.
|
<U2> Tuple6<T1,U2,T3,T4,T5,T6> |
Tuple6.map2(java.util.function.Function<? super T2,? extends U2> function)
Apply attribute 2 as argument to a function and return a new tuple with the substituted argument.
|
<U3> Tuple6<T1,T2,U3,T4,T5,T6> |
Tuple6.map3(java.util.function.Function<? super T3,? extends U3> function)
Apply attribute 3 as argument to a function and return a new tuple with the substituted argument.
|
<U4> Tuple6<T1,T2,T3,U4,T5,T6> |
Tuple6.map4(java.util.function.Function<? super T4,? extends U4> function)
Apply attribute 4 as argument to a function and return a new tuple with the substituted argument.
|
<U5> Tuple6<T1,T2,T3,T4,U5,T6> |
Tuple6.map5(java.util.function.Function<? super T5,? extends U5> function)
Apply attribute 5 as argument to a function and return a new tuple with the substituted argument.
|
<U6> Tuple6<T1,T2,T3,T4,T5,U6> |
Tuple6.map6(java.util.function.Function<? super T6,? extends U6> function)
Apply attribute 6 as argument to a function and return a new tuple with the substituted argument.
|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple6.skip0()
Skip 0 degrees from this tuple.
|
Tuple6<T2,T3,T4,T5,T6,T7> |
Tuple7.skip1()
Skip 1 degrees from this tuple.
|
Tuple6<T11,T12,T13,T14,T15,T16> |
Tuple16.skip10()
Skip 10 degrees from this tuple.
|
Tuple6<T3,T4,T5,T6,T7,T8> |
Tuple8.skip2()
Skip 2 degrees from this tuple.
|
Tuple6<T4,T5,T6,T7,T8,T9> |
Tuple9.skip3()
Skip 3 degrees from this tuple.
|
Tuple6<T5,T6,T7,T8,T9,T10> |
Tuple10.skip4()
Skip 4 degrees from this tuple.
|
Tuple6<T6,T7,T8,T9,T10,T11> |
Tuple11.skip5()
Skip 5 degrees from this tuple.
|
Tuple6<T7,T8,T9,T10,T11,T12> |
Tuple12.skip6()
Skip 6 degrees from this tuple.
|
Tuple6<T8,T9,T10,T11,T12,T13> |
Tuple13.skip7()
Skip 7 degrees from this tuple.
|
Tuple6<T9,T10,T11,T12,T13,T14> |
Tuple14.skip8()
Skip 8 degrees from this tuple.
|
Tuple6<T10,T11,T12,T13,T14,T15> |
Tuple15.skip9()
Skip 9 degrees from this tuple.
|
static <T1,T2,T3,T4,T5,T6> |
Tuple.tuple(T1 v1,
T2 v2,
T3 v3,
T4 v4,
T5 v5,
T6 v6)
Construct a tuple of degree 6.
|
| Modifier and Type | Method and Description |
|---|---|
static <T,A1,A2,A3,A4,A5,A6,D1,D2,D3,D4,D5,D6> |
Tuple.collectors(java.util.stream.Collector<? super T,A1,D1> collector1,
java.util.stream.Collector<? super T,A2,D2> collector2,
java.util.stream.Collector<? super T,A3,D3> collector3,
java.util.stream.Collector<? super T,A4,D4> collector4,
java.util.stream.Collector<? super T,A5,D5> collector5,
java.util.stream.Collector<? super T,A6,D6> collector6)
Construct a tuple collector of degree 6.
|
static <T,A1,A2,A3,A4,A5,A6,D1,D2,D3,D4,D5,D6> |
Tuple.collectors(java.util.stream.Collector<? super T,A1,D1> collector1,
java.util.stream.Collector<? super T,A2,D2> collector2,
java.util.stream.Collector<? super T,A3,D3> collector3,
java.util.stream.Collector<? super T,A4,D4> collector4,
java.util.stream.Collector<? super T,A5,D5> collector5,
java.util.stream.Collector<? super T,A6,D6> collector6)
Construct a tuple collector of degree 6.
|
static <T1,T2,T3,T4,T5,T6> |
Tuple.consumer(Consumer6<T1,T2,T3,T4,T5,T6> consumer)
Construct a tuple consumer of degree 6.
|
static <T1,T2,T3,T4,T5,T6,R> |
Tuple.function(Function6<T1,T2,T3,T4,T5,T6,R> function)
Construct a tuple function of degree 6.
|
Tuple2<Tuple0,Tuple6<T1,T2,T3,T4,T5,T6>> |
Tuple6.split0()
Split this tuple into two tuples of degree 0 and 6.
|
Tuple2<Tuple1<T1>,Tuple6<T2,T3,T4,T5,T6,T7>> |
Tuple7.split1()
Split this tuple into two tuples of degree 1 and 6.
|
Tuple2<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>,Tuple6<T11,T12,T13,T14,T15,T16>> |
Tuple16.split10()
Split this tuple into two tuples of degree 10 and 6.
|
Tuple2<Tuple2<T1,T2>,Tuple6<T3,T4,T5,T6,T7,T8>> |
Tuple8.split2()
Split this tuple into two tuples of degree 2 and 6.
|
Tuple2<Tuple3<T1,T2,T3>,Tuple6<T4,T5,T6,T7,T8,T9>> |
Tuple9.split3()
Split this tuple into two tuples of degree 3 and 6.
|
Tuple2<Tuple4<T1,T2,T3,T4>,Tuple6<T5,T6,T7,T8,T9,T10>> |
Tuple10.split4()
Split this tuple into two tuples of degree 4 and 6.
|
Tuple2<Tuple5<T1,T2,T3,T4,T5>,Tuple6<T6,T7,T8,T9,T10,T11>> |
Tuple11.split5()
Split this tuple into two tuples of degree 5 and 6.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple3<T7,T8,T9>> |
Tuple9.split6()
Split this tuple into two tuples of degree 6 and 3.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple2<T7,T8>> |
Tuple8.split6()
Split this tuple into two tuples of degree 6 and 2.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple1<T7>> |
Tuple7.split6()
Split this tuple into two tuples of degree 6 and 1.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple0> |
Tuple6.split6()
Split this tuple into two tuples of degree 6 and 0.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple10<T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>> |
Tuple16.split6()
Split this tuple into two tuples of degree 6 and 10.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple9<T7,T8,T9,T10,T11,T12,T13,T14,T15>> |
Tuple15.split6()
Split this tuple into two tuples of degree 6 and 9.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple8<T7,T8,T9,T10,T11,T12,T13,T14>> |
Tuple14.split6()
Split this tuple into two tuples of degree 6 and 8.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple7<T7,T8,T9,T10,T11,T12,T13>> |
Tuple13.split6()
Split this tuple into two tuples of degree 6 and 7.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple6<T7,T8,T9,T10,T11,T12>> |
Tuple12.split6()
Split this tuple into two tuples of degree 6 and 6.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple6<T7,T8,T9,T10,T11,T12>> |
Tuple12.split6()
Split this tuple into two tuples of degree 6 and 6.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple5<T7,T8,T9,T10,T11>> |
Tuple11.split6()
Split this tuple into two tuples of degree 6 and 5.
|
Tuple2<Tuple6<T1,T2,T3,T4,T5,T6>,Tuple4<T7,T8,T9,T10>> |
Tuple10.split6()
Split this tuple into two tuples of degree 6 and 4.
|
Tuple2<Tuple7<T1,T2,T3,T4,T5,T6,T7>,Tuple6<T8,T9,T10,T11,T12,T13>> |
Tuple13.split7()
Split this tuple into two tuples of degree 7 and 6.
|
Tuple2<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>,Tuple6<T9,T10,T11,T12,T13,T14>> |
Tuple14.split8()
Split this tuple into two tuples of degree 8 and 6.
|
Tuple2<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>,Tuple6<T10,T11,T12,T13,T14,T15>> |
Tuple15.split9()
Split this tuple into two tuples of degree 9 and 6.
|
| Modifier and Type | Method and Description |
|---|---|
int |
Tuple6.compareTo(Tuple6<T1,T2,T3,T4,T5,T6> other) |
<T10,T11,T12,T13,T14,T15> |
Tuple9.concat(Tuple6<T10,T11,T12,T13,T14,T15> tuple)
Concatenate a tuple to this tuple.
|
<T11,T12,T13,T14,T15,T16> |
Tuple10.concat(Tuple6<T11,T12,T13,T14,T15,T16> tuple)
Concatenate a tuple to this tuple.
|
<T1,T2,T3,T4,T5,T6> |
Tuple0.concat(Tuple6<T1,T2,T3,T4,T5,T6> tuple)
Concatenate a tuple to this tuple.
|
<T2,T3,T4,T5,T6,T7> |
Tuple1.concat(Tuple6<T2,T3,T4,T5,T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4,T5,T6,T7,T8> |
Tuple2.concat(Tuple6<T3,T4,T5,T6,T7,T8> tuple)
Concatenate a tuple to this tuple.
|
<T4,T5,T6,T7,T8,T9> |
Tuple3.concat(Tuple6<T4,T5,T6,T7,T8,T9> tuple)
Concatenate a tuple to this tuple.
|
<T5,T6,T7,T8,T9,T10> |
Tuple4.concat(Tuple6<T5,T6,T7,T8,T9,T10> tuple)
Concatenate a tuple to this tuple.
|
<T6,T7,T8,T9,T10,T11> |
Tuple5.concat(Tuple6<T6,T7,T8,T9,T10,T11> tuple)
Concatenate a tuple to this tuple.
|
<T7,T8,T9,T10,T11,T12> |
Tuple6.concat(Tuple6<T7,T8,T9,T10,T11,T12> tuple)
Concatenate a tuple to this tuple.
|
<T8,T9,T10,T11,T12,T13> |
Tuple7.concat(Tuple6<T8,T9,T10,T11,T12,T13> tuple)
Concatenate a tuple to this tuple.
|
<T9,T10,T11,T12,T13,T14> |
Tuple8.concat(Tuple6<T9,T10,T11,T12,T13,T14> tuple)
Concatenate a tuple to this tuple.
|
| Constructor and Description |
|---|
Tuple6(Tuple6<T1,T2,T3,T4,T5,T6> tuple) |
Copyright © 2016. All Rights Reserved.