Uses of Interface
org.jooq.lambda.Seq

Packages that use Seq
Package
Description
This package contains useful extensions for interoperation with Java 8's lambda expressions and FunctionalInterface types.
This package contains tuple types of various degrees.
  • Uses of Seq in org.jooq.lambda

    Methods in org.jooq.lambda that return Seq
    Modifier and Type
    Method
    Description
    default Seq<T>
    Seq.append(Iterable<? extends T> other)
    Concatenate two streams.
    default Seq<T>
    Seq.append(Optional<? extends T> other)
    Concatenate an optional value.
    default Seq<T>
    Seq.append(Stream<? extends T> other)
    Concatenate two streams.
    default Seq<T>
    Seq.append(Seq<? extends T> other)
    Concatenate two streams.
    default Seq<T>
    Seq.append(T other)
    Concatenate two streams.
    default Seq<T>
    Seq.append(T... other)
    Concatenate two streams.
    default <U> Seq<U>
    Seq.cast(Class<? extends U> type)
    Cast all elements in a stream to a given type, possibly throwing a ClassCastException.
    static <T, U> Seq<U>
    Seq.cast(Stream<? extends T> stream, Class<? extends U> type)
    Cast all elements in a stream to a given type, possibly throwing a ClassCastException.
    default Seq<T>
    Seq.concat(Iterable<? extends T> other)
    Concatenate two streams.
    static <T> Seq<T>
    Seq.concat(Iterable<? extends T>... iterables)
    Concatenate a number of streams.
    default Seq<T>
    Seq.concat(Optional<? extends T> other)
    Concatenate an optional value.
    static <T> Seq<T>
    Seq.concat(Optional<? extends T>... optionals)
    Concatenate a number of optionals.
    default Seq<T>
    Seq.concat(Stream<? extends T> other)
    Concatenate two streams.
    static <T> Seq<T>
    Seq.concat(Stream<? extends T>... streams)
    Concatenate a number of streams.
    default Seq<T>
    Seq.concat(Seq<? extends T> other)
    Concatenate two streams.
    static <T> Seq<T>
    Seq.concat(Seq<? extends T>... streams)
    Concatenate a number of streams.
    default Seq<T>
    Seq.concat(T other)
    Concatenate two streams.
    default Seq<T>
    Seq.concat(T... other)
    Concatenate two streams.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2)
    Cross apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3)
    Cross apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4)
    Cross apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5)
    Cross apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6)
    Cross apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7)
    Cross apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8)
    Cross apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9)
    Cross apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10)
    Cross apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11)
    Cross apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12)
    Cross apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12, Function<? super T12,? extends Iterable<? extends T13>> function13)
    Cross apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12, Function<? super T12,? extends Iterable<? extends T13>> function13, Function<? super T13,? extends Iterable<? extends T14>> function14)
    Cross apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12, Function<? super T12,? extends Iterable<? extends T13>> function13, Function<? super T13,? extends Iterable<? extends T14>> function14, Function<? super T14,? extends Iterable<? extends T15>> function15)
    Cross apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.crossApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12, Function<? super T12,? extends Iterable<? extends T13>> function13, Function<? super T13,? extends Iterable<? extends T14>> function14, Function<? super T14,? extends Iterable<? extends T15>> function15, Function<? super T15,? extends Iterable<? extends T16>> function16)
    Cross apply 16 functions to a stream.
    default <U> Seq<Tuple2<T,U>>
    Seq.crossApply(Function<? super T,? extends Iterable<? extends U>> function)
    Cross apply a function to this stream.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2)
    Cross apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3)
    Cross apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4)
    Cross apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5)
    Cross apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6)
    Cross apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7)
    Cross apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8)
    Cross apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9)
    Cross apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10)
    Cross apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11)
    Cross apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12)
    Cross apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12, Function<? super T12,? extends Stream<? extends T13>> function13)
    Cross apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12, Function<? super T12,? extends Stream<? extends T13>> function13, Function<? super T13,? extends Stream<? extends T14>> function14)
    Cross apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12, Function<? super T12,? extends Stream<? extends T13>> function13, Function<? super T13,? extends Stream<? extends T14>> function14, Function<? super T14,? extends Stream<? extends T15>> function15)
    Cross apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.crossApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12, Function<? super T12,? extends Stream<? extends T13>> function13, Function<? super T13,? extends Stream<? extends T14>> function14, Function<? super T14,? extends Stream<? extends T15>> function15, Function<? super T15,? extends Stream<? extends T16>> function16)
    Cross apply 16 functions to a stream.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2)
    Cross apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3)
    Cross apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4)
    Cross apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5)
    Cross apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6)
    Cross apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7)
    Cross apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8)
    Cross apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9)
    Cross apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10)
    Cross apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11)
    Cross apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12)
    Cross apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13)
    Cross apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14)
    Cross apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15)
    Cross apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15, Function<? super T15,? extends Seq<? extends T16>> function16)
    Cross apply 16 functions to a stream.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossJoin(Iterable<? extends T1> i1, Iterable<? extends T2> i2)
    Cross join 2 streams into one.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossJoin(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3)
    Cross join 3 streams into one.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossJoin(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3, Iterable<? extends T4> i4)
    Cross join 4 streams into one.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossJoin(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3, Iterable<? extends T4> i4, Iterable<? extends T5> i5)
    Cross join 5 streams into one.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<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, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Iterable<? extends T7> i7)
    Cross join 7 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8)
    Cross join 8 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9)
    Cross join 9 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10)
    Cross join 10 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11)
    Cross join 11 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12)
    Cross join 12 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13)
    Cross join 13 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14)
    Cross join 14 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14, Iterable<? extends T15> i15)
    Cross join 15 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14, Iterable<? extends T15> i15, Iterable<? extends T16> i16)
    Cross join 16 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.crossJoin(Iterable<? extends U> other)
    Cross join 2 streams into one.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2)
    Cross join 2 streams into one.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3)
    Cross join 3 streams into one.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4)
    Cross join 4 streams into one.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5)
    Cross join 5 streams into one.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6)
    Cross join 6 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7)
    Cross join 7 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8)
    Cross join 8 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9)
    Cross join 9 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10)
    Cross join 10 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11)
    Cross join 11 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12)
    Cross join 12 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13)
    Cross join 13 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14)
    Cross join 14 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15)
    Cross join 15 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.crossJoin(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15, Stream<? extends T16> s16)
    Cross join 16 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.crossJoin(Stream<? extends U> other)
    Cross join 2 streams into one.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossJoin(Seq<? extends T1> s1, Seq<? extends T2> s2)
    Cross join 2 streams into one.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossJoin(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3)
    Cross join 3 streams into one.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossJoin(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4)
    Cross join 4 streams into one.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossJoin(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5)
    Cross join 5 streams into one.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<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, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Seq<? extends T7> s7)
    Cross join 7 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8)
    Cross join 8 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9)
    Cross join 9 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10)
    Cross join 10 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11)
    Cross join 11 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12)
    Cross join 12 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13)
    Cross join 13 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14)
    Cross join 14 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15)
    Cross join 15 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16)
    Cross join 16 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.crossJoin(Seq<? extends U> other)
    Cross join 2 streams into one.
    default Seq<Tuple2<T,T>>
    Cross join stream with itself into one.
    default Seq<T>
    Seq.cycle()
    Repeat a stream infinitely.
    default Seq<T>
    Seq.cycle(long times)
    Repeat a stream a certain amount of times.
    static <T> Seq<T>
    Seq.cycle(Iterable<? extends T> iterable)
    Repeat a stream infinitely.
    static <T> Seq<T>
    Seq.cycle(Iterable<? extends T> iterable, long times)
    Repeat a stream a certain amount of times.
    static <T> Seq<T>
    Seq.cycle(Stream<? extends T> stream)
    Repeat a stream infinitely.
    static <T> Seq<T>
    Seq.cycle(Stream<? extends T> stream, long times)
    Repeat a stream a certain amount of times.
    static <T> Seq<T>
    Seq.cycle(Seq<? extends T> stream)
    Repeat a stream infinitely.
    static <T> Seq<T>
    Seq.cycle(Seq<? extends T> stream, long times)
    Repeat a stream a certain amount of times.
    Seq.distinct()
     
    default <U> Seq<T>
    Seq.distinct(Function<? super T,? extends U> keyExtractor)
    Get a stream of distinct keys.
    default Seq<T>
    Seq.drop(long n)
    Alias for skip
    static <T> Seq<T>
    Seq.empty()
     
    Seq.filter(Predicate<? super T> predicate)
     
    <R> Seq<R>
    Seq.flatMap(Function<? super T,? extends Stream<? extends R>> mapper)
     
    static Seq<Void>
    Seq.generate()
     
    static <T> Seq<T>
    Seq.generate(Supplier<? extends T> s)
     
    static <T> Seq<T>
    Seq.generate(T value)
     
    static <K, T> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Iterable<? extends T> iterable, Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function
    static <K, T, A, D> Seq<Tuple2<K,D>>
    Seq.grouped(Iterable<? extends T> iterable, Function<? super T,? extends K> classifier, Collector<? super T,A,D> downstream)
    Classify this stream's elements according to a given classifier function and collect each class's elements using a collector.
    default <K> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function.
    default <K, A, D> Seq<Tuple2<K,D>>
    Seq.grouped(Function<? super T,? extends K> classifier, Collector<? super T,A,D> downstream)
    Classify this stream's elements according to a given classifier function and collect each class's elements using a collector.
    static <K, T> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Stream<? extends T> stream, Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function
    static <K, T, A, D> Seq<Tuple2<K,D>>
    Seq.grouped(Stream<? extends T> stream, Function<? super T,? extends K> classifier, Collector<? super T,A,D> downstream)
    Classify this stream's elements according to a given classifier function and collect each class's elements using a collector.
    static <K, T> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Seq<? extends T> seq, Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function
    static <K, T, A, D> Seq<Tuple2<K,D>>
    Seq.grouped(Seq<? extends T> seq, Function<? super T,? extends K> classifier, Collector<? super T,A,D> downstream)
    Classify this stream's elements according to a given classifier function and collect each class's elements using a collector.
    default <U> Seq<Tuple2<T,U>>
    Seq.innerJoin(Iterable<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Inner join 2 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.innerJoin(Stream<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Inner join 2 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.innerJoin(Seq<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Inner join 2 streams into one.
    default Seq<Tuple2<T,T>>
    Seq.innerSelfJoin(BiPredicate<? super T,? super T> predicate)
    Inner join stream with itself.
    static <T> Seq<T>
    Seq.intersperse(Stream<? extends T> stream, T value)
    Returns a stream with a given value interspersed between any two values of this stream.
    default Seq<T>
    Seq.intersperse(T value)
    Returns a stream with a given value interspersed between any two values of this stream.
    static <T> Seq<T>
    Seq.iterate(T seed, UnaryOperator<T> f)
     
    static <T> Seq<T>
    Seq.iterateWhilePresent(T seed, Function<? super T,Optional<? extends T>> generator)
    Returns a sequence of elements provided by the generator until it returns Optional.empty() (in other words, it performs iterateUntilAbsent).
    default <U> Seq<Tuple2<T,U>>
    Seq.leftOuterJoin(Iterable<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Left outer join 2 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.leftOuterJoin(Stream<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Left outer join 2 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.leftOuterJoin(Seq<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Left outer join 2 streams into one.
    default Seq<Tuple2<T,T>>
    Seq.leftOuterSelfJoin(BiPredicate<? super T,? super T> predicate)
    Left outer join one streams into itself.
    Seq.limit(long maxSize)
     
    static <T> Seq<T>
    Seq.limit(Stream<? extends T> stream, long elements)
    Returns a stream limited to n elements.
    default Seq<T>
    Seq.limitUntil(Predicate<? super T> predicate)
    Returns a stream limited to all elements for which a predicate evaluates to false.
    static <T> Seq<T>
    Seq.limitUntil(Stream<? extends T> stream, Predicate<? super T> predicate)
    Returns a stream limited to all elements for which a predicate evaluates to false.
    default Seq<T>
    Seq.limitUntilClosed(Predicate<? super T> predicate)
    Returns a stream limited to all elements for which a predicate evaluates to false plus the first element for which it evaluates to true.
    static <T> Seq<T>
    Seq.limitUntilClosed(Stream<? extends T> stream, Predicate<? super T> predicate)
    Returns a stream limited to all elements for which a predicate evaluates to false plus the first element for which it evaluates to true.
    default Seq<T>
    Seq.limitWhile(Predicate<? super T> predicate)
    Returns a stream limited to all elements for which a predicate evaluates to true.
    static <T> Seq<T>
    Seq.limitWhile(Stream<? extends T> stream, Predicate<? super T> predicate)
    Returns a stream limited to all elements for which a predicate evaluates to true.
    default Seq<T>
    Seq.limitWhileClosed(Predicate<? super T> predicate)
    Returns a stream limited to all elements for which a predicate evaluates to true plus the first element for which it evaluates to false.
    static <T> Seq<T>
    Seq.limitWhileClosed(Stream<? extends T> stream, Predicate<? super T> predicate)
    Returns a stream limited to all elements for which a predicate evaluates to true plus the first element for which it evaluates to false.
    <R> Seq<R>
    Seq.map(Function<? super T,? extends R> mapper)
     
    Collectable.maxAll()
    Get the maximum values.
    Collectable.maxAll(Comparator<? super T> comparator)
    Get the maximum values by a function.
    <U extends Comparable<? super U>>
    Seq<U>
    Collectable.maxAll(Function<? super T,? extends U> function)
    Get the maximum values by a function.
    <U> Seq<U>
    Collectable.maxAll(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get the maximum values by a function.
    <U extends Comparable<? super U>>
    Seq<T>
    Collectable.maxAllBy(Function<? super T,? extends U> function)
    Get the maximum values by a function.
    <U> Seq<T>
    Collectable.maxAllBy(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get the maximum values by a function.
    Collectable.minAll()
    Get the minimum values.
    Collectable.minAll(Comparator<? super T> comparator)
    Get the minimum values by a function.
    <U extends Comparable<? super U>>
    Seq<U>
    Collectable.minAll(Function<? super T,? extends U> function)
    Get the minimum values by a function.
    <U> Seq<U>
    Collectable.minAll(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get the minimum values by a function.
    <U extends Comparable<? super U>>
    Seq<T>
    Collectable.minAllBy(Function<? super T,? extends U> function)
    Get the minimum values by a function.
    <U> Seq<T>
    Collectable.minAllBy(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get the minimum values by a function.
    Collectable.modeAll()
    Get the mode, i.e. the values that appear most often in the collectable.
    <U> Seq<T>
    Collectable.modeAllBy(Function<? super T,? extends U> function)
    Get the mode, i.e. the values that appear most often in the collectable.
    static <T> Seq<T>
    Seq.of(T value)
     
    static <T> Seq<T>
    Seq.of(T... values)
     
    default <U> Seq<U>
    Seq.ofType(Class<? extends U> type)
    Keep only those elements in a stream that are of a given type.
    static <T, U> Seq<U>
    Seq.ofType(Stream<? extends T> stream, Class<? extends U> type)
    Keep only those elements in a stream that are of a given type.
    Seq.onClose(Runnable closeHandler)
     
    default Seq<T>
    Seq.onEmpty(T value)
    Produce this stream, or an alternative stream with the value, in case this stream is empty.
    default Seq<T>
    Seq.onEmptyGet(Supplier<? extends T> supplier)
    Produce this stream, or an alternative stream with a value from the supplier, in case this stream is empty.
    default <X extends Throwable>
    Seq<T>
    Seq.onEmptyThrow(Supplier<? extends X> supplier)
    Produce this stream, or throw a throwable from the supplier, in case this stream is empty.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2)
    Outer apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3)
    Outer apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4)
    Outer apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5)
    Outer apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6)
    Outer apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7)
    Outer apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8)
    Outer apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9)
    Outer apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10)
    Outer apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11)
    Outer apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12)
    Outer apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12, Function<? super T12,? extends Iterable<? extends T13>> function13)
    Outer apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12, Function<? super T12,? extends Iterable<? extends T13>> function13, Function<? super T13,? extends Iterable<? extends T14>> function14)
    Outer apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12, Function<? super T12,? extends Iterable<? extends T13>> function13, Function<? super T13,? extends Iterable<? extends T14>> function14, Function<? super T14,? extends Iterable<? extends T15>> function15)
    Outer apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.outerApply(Iterable<? extends T1> iterable, Function<? super T1,? extends Iterable<? extends T2>> function2, Function<? super T2,? extends Iterable<? extends T3>> function3, Function<? super T3,? extends Iterable<? extends T4>> function4, Function<? super T4,? extends Iterable<? extends T5>> function5, Function<? super T5,? extends Iterable<? extends T6>> function6, Function<? super T6,? extends Iterable<? extends T7>> function7, Function<? super T7,? extends Iterable<? extends T8>> function8, Function<? super T8,? extends Iterable<? extends T9>> function9, Function<? super T9,? extends Iterable<? extends T10>> function10, Function<? super T10,? extends Iterable<? extends T11>> function11, Function<? super T11,? extends Iterable<? extends T12>> function12, Function<? super T12,? extends Iterable<? extends T13>> function13, Function<? super T13,? extends Iterable<? extends T14>> function14, Function<? super T14,? extends Iterable<? extends T15>> function15, Function<? super T15,? extends Iterable<? extends T16>> function16)
    Outer apply 16 functions to a stream.
    default <U> Seq<Tuple2<T,U>>
    Seq.outerApply(Function<? super T,? extends Iterable<? extends U>> function)
    Outer apply a function to this stream.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2)
    Outer apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3)
    Outer apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4)
    Outer apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5)
    Outer apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6)
    Outer apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7)
    Outer apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8)
    Outer apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9)
    Outer apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10)
    Outer apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11)
    Outer apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12)
    Outer apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12, Function<? super T12,? extends Stream<? extends T13>> function13)
    Outer apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12, Function<? super T12,? extends Stream<? extends T13>> function13, Function<? super T13,? extends Stream<? extends T14>> function14)
    Outer apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12, Function<? super T12,? extends Stream<? extends T13>> function13, Function<? super T13,? extends Stream<? extends T14>> function14, Function<? super T14,? extends Stream<? extends T15>> function15)
    Outer apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.outerApply(Stream<? extends T1> stream, Function<? super T1,? extends Stream<? extends T2>> function2, Function<? super T2,? extends Stream<? extends T3>> function3, Function<? super T3,? extends Stream<? extends T4>> function4, Function<? super T4,? extends Stream<? extends T5>> function5, Function<? super T5,? extends Stream<? extends T6>> function6, Function<? super T6,? extends Stream<? extends T7>> function7, Function<? super T7,? extends Stream<? extends T8>> function8, Function<? super T8,? extends Stream<? extends T9>> function9, Function<? super T9,? extends Stream<? extends T10>> function10, Function<? super T10,? extends Stream<? extends T11>> function11, Function<? super T11,? extends Stream<? extends T12>> function12, Function<? super T12,? extends Stream<? extends T13>> function13, Function<? super T13,? extends Stream<? extends T14>> function14, Function<? super T14,? extends Stream<? extends T15>> function15, Function<? super T15,? extends Stream<? extends T16>> function16)
    Outer apply 16 functions to a stream.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2)
    Outer apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3)
    Outer apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4)
    Outer apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5)
    Outer apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6)
    Outer apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7)
    Outer apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8)
    Outer apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9)
    Outer apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10)
    Outer apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11)
    Outer apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12)
    Outer apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13)
    Outer apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14)
    Outer apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15)
    Outer apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15, Function<? super T15,? extends Seq<? extends T16>> function16)
    Outer apply 16 functions to a stream.
    default Seq<T>
    Seq.parallel()
    Seq streams are always sequential and, as such, doesn't support parallelization.
    Seq.peek(Consumer<? super T> action)
     
    default Seq<T>
    Seq.prepend(Iterable<? extends T> other)
    Concatenate two streams.
    default Seq<T>
    Seq.prepend(Optional<? extends T> other)
    Concatenate an optional value.
    default Seq<T>
    Seq.prepend(Stream<? extends T> other)
    Concatenate two streams.
    default Seq<T>
    Seq.prepend(Seq<? extends T> other)
    Concatenate two streams.
    default Seq<T>
    Seq.prepend(T other)
    Concatenate two streams.
    default Seq<T>
    Seq.prepend(T... other)
    Concatenate two streams.
    static Seq<Byte>
    Seq.range(byte fromInclusive, byte toExclusive)
    The range between two values.
    static Seq<Byte>
    Seq.range(byte fromInclusive, byte toExclusive, int step)
    The range between two values.
    static Seq<Character>
    Seq.range(char fromInclusive, char toExclusive)
    The range between two values.
    static Seq<Character>
    Seq.range(char fromInclusive, char toExclusive, int step)
    The range between two values.
    static Seq<Integer>
    Seq.range(int fromInclusive, int toExclusive)
    The range between two values.
    static Seq<Integer>
    Seq.range(int fromInclusive, int toExclusive, int step)
    The range between two values.
    static Seq<Long>
    Seq.range(long fromInclusive, long toExclusive)
    The range between two values.
    static Seq<Long>
    Seq.range(long fromInclusive, long toExclusive, long step)
    The range between two values.
    static Seq<Short>
    Seq.range(short fromInclusive, short toExclusive)
    The range between two values.
    static Seq<Short>
    Seq.range(short fromInclusive, short toExclusive, int step)
    The range between two values.
    static Seq<Instant>
    Seq.range(Instant fromInclusive, Instant toExclusive)
    The range between two values.
    static Seq<Instant>
    Seq.range(Instant fromInclusive, Instant toExclusive, Duration step)
    The range between two values.
    static Seq<Byte>
    Seq.rangeClosed(byte fromInclusive, byte toInclusive)
    The range between two values.
    static Seq<Byte>
    Seq.rangeClosed(byte fromInclusive, byte toInclusive, int step)
    The range between two values.
    static Seq<Character>
    Seq.rangeClosed(char fromInclusive, char toInclusive)
    The range between two values.
    static Seq<Character>
    Seq.rangeClosed(char fromInclusive, char toInclusive, int step)
    The range between two values.
    static Seq<Integer>
    Seq.rangeClosed(int fromInclusive, int toInclusive)
    The range between two values.
    static Seq<Integer>
    Seq.rangeClosed(int fromInclusive, int toInclusive, int step)
    The range between two values.
    static Seq<Long>
    Seq.rangeClosed(long fromInclusive, long toInclusive)
    The range between two values.
    static Seq<Long>
    Seq.rangeClosed(long fromInclusive, long toInclusive, long step)
    The range between two values.
    static Seq<Short>
    Seq.rangeClosed(short fromInclusive, short toInclusive)
    The range between two values.
    static Seq<Short>
    Seq.rangeClosed(short fromInclusive, short toInclusive, int step)
    The range between two values.
    static Seq<Instant>
    Seq.rangeClosed(Instant fromInclusive, Instant toInclusive)
    The range between two values.
    static Seq<Instant>
    Seq.rangeClosed(Instant fromInclusive, Instant toInclusive, Duration step)
    The range between two values.
    default Seq<T>
    Seq.remove(T other)
    Return a new stream where the first occurrence of the argument is removed.
    default Seq<T>
    Seq.removeAll(Iterable<? extends T> other)
    Return a new stream where all occurrences of the arguments are removed.
    default Seq<T>
    Seq.removeAll(Stream<? extends T> other)
    Return a new stream where all occurrences of the arguments are removed.
    default Seq<T>
    Seq.removeAll(Seq<? extends T> other)
    Return a new stream where all occurrences of the arguments are removed.
    default Seq<T>
    Seq.removeAll(T... other)
    Return a new stream where all occurrences of the arguments are removed.
    default Seq<T>
    Seq.retainAll(Iterable<? extends T> other)
    Return a new stream where only occurrences of the arguments are retained.
    default Seq<T>
    Seq.retainAll(Stream<? extends T> other)
    Return a new stream where only occurrences of the arguments are retained.
    default Seq<T>
    Seq.retainAll(Seq<? extends T> other)
    Return a new stream where only occurrences of the arguments are retained.
    default Seq<T>
    Seq.retainAll(T... other)
    Return a new stream where only occurrences of the arguments are retained.
    default Seq<T>
    Seq.reverse()
    Reverse a stream.
    static <T> Seq<T>
    Seq.reverse(Iterable<? extends T> iterable)
    Reverse a stream.
    static <T> Seq<T>
    Seq.reverse(Stream<? extends T> stream)
    Reverse a stream.
    static <T> Seq<T>
    Seq.reverse(Seq<? extends T> stream)
    Reverse a stream.
    default <U> Seq<Tuple2<T,U>>
    Seq.rightOuterJoin(Iterable<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Right outer join 2 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.rightOuterJoin(Stream<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Right outer join 2 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.rightOuterJoin(Seq<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Right outer join 2 streams into one.
    default Seq<Tuple2<T,T>>
    Seq.rightOuterSelfJoin(BiPredicate<? super T,? super T> predicate)
    Right outer join stream into itself.
    static <T, U> Seq<U>
    Seq.scanLeft(Iterable<? extends T> iterable, U seed, BiFunction<? super U,? super T,? extends U> function)
    Scan a stream to the left.
    static <T, U> Seq<U>
    Seq.scanLeft(Stream<? extends T> stream, U seed, BiFunction<? super U,? super T,? extends U> function)
    Scan a stream to the left.
    static <T, U> Seq<U>
    Seq.scanLeft(Seq<? extends T> stream, U seed, BiFunction<? super U,? super T,? extends U> function)
    Scan a stream to the left.
    default <U> Seq<U>
    Seq.scanLeft(U seed, BiFunction<? super U,? super T,? extends U> function)
    Scan a stream to the left.
    static <T, U> Seq<U>
    Seq.scanRight(Iterable<? extends T> iterable, U seed, BiFunction<? super T,? super U,? extends U> function)
    Scan a stream to the right.
    static <T, U> Seq<U>
    Seq.scanRight(Stream<? extends T> stream, U seed, BiFunction<? super T,? super U,? extends U> function)
    Scan a stream to the right.
    static <T, U> Seq<U>
    Seq.scanRight(Seq<? extends T> stream, U seed, BiFunction<? super T,? super U,? extends U> function)
    Scan a stream to the right.
    default <U> Seq<U>
    Seq.scanRight(U seed, BiFunction<? super T,? super U,? extends U> function)
    Scan a stream to the right.
    static Seq<Byte>
    Seq.seq(InputStream is)
    Wrap an InputStream into a Seq.
    static Seq<Character>
    Seq.seq(Reader reader)
    Wrap a Reader into a Seq.
    static <T> Seq<T>
    Seq.seq(Iterable<? extends T> iterable)
    Wrap an Iterable into a Seq.
    static <T> Seq<T>
    Seq.seq(Enumeration<T> enumeration)
    Wrap an Enumeration into a Seq.
    static <T> Seq<T>
    Seq.seq(Supplier<? extends T> s)
    Get a stream from a single element from a Supplier.
    static <T> Seq<T>
    Seq.seq(Iterator<? extends T> iterator)
    Wrap an Iterator into a Seq.
    static <K, V> Seq<Tuple2<K,V>>
    Seq.seq(Map<? extends K,? extends V> map)
    Wrap a Map into a Seq.
    static <T> Seq<T>
    Seq.seq(Optional<? extends T> optional)
    Wrap an Optional into a Seq.
    static <T> Seq<T>
    Seq.seq(Optional<? extends T>... optionals)
    Wrap multiple Optional's into a Seq.
    static <T> Seq<T>
    Seq.seq(Spliterator<? extends T> spliterator)
    Wrap a Spliterator into a Seq.
    static Seq<Double>
    Seq.seq(DoubleStream stream)
    Wrap a DoubleStream into a Seq.
    static Seq<Integer>
    Seq.seq(IntStream stream)
    Wrap a IntStream into a Seq.
    static Seq<Long>
    Seq.seq(LongStream stream)
    Wrap a LongStream into a Seq.
    static <T> Seq<T>
    Seq.seq(Stream<? extends T> stream)
    Wrap a Stream into a Seq.
    static <T> Seq<T>
    Seq.seq(Seq<? extends T> stream)
    Wrap a Stream into a Seq.
    static <T> Seq<T>
    Seq.seq(T[] values)
    Wrap an array into a Seq.
    static <T> Seq<T>
    Seq.seq(T[] values, int startIndex, int endIndex)
    Wrap an array slice into a Seq.
    default Seq<T>
    Returns this stream.
    default Seq<T>
    Seq.shuffle()
    Shuffle a stream
    static <T> Seq<T>
    Seq.shuffle(Iterable<? extends T> iterable)
    Shuffle a stream
    static <T> Seq<T>
    Seq.shuffle(Iterable<? extends T> iterable, Random random)
    Shuffle a stream using specified source of randomness
    default Seq<T>
    Seq.shuffle(Random random)
    Shuffle a stream using specified source of randomness
    static <T> Seq<T>
    Seq.shuffle(Stream<? extends T> stream)
    Shuffle a stream
    static <T> Seq<T>
    Seq.shuffle(Stream<? extends T> stream, Random random)
    Shuffle a stream using specified source of randomness
    static <T> Seq<T>
    Seq.shuffle(Seq<? extends T> stream)
    Shuffle a stream
    static <T> Seq<T>
    Seq.shuffle(Seq<? extends T> stream, Random random)
    Shuffle a stream using specified source of randomness
    Seq.skip(long n)
     
    static <T> Seq<T>
    Seq.skip(Stream<? extends T> stream, long elements)
    Returns a stream with n elements skipped.
    default Seq<T>
    Seq.skipUntil(Predicate<? super T> predicate)
    Returns a stream with all elements skipped for which a predicate evaluates to false.
    static <T> Seq<T>
    Seq.skipUntil(Stream<? extends T> stream, Predicate<? super T> predicate)
    Returns a stream with all elements skipped for which a predicate evaluates to false.
    default Seq<T>
    Seq.skipUntilClosed(Predicate<? super T> predicate)
    Returns a stream with all elements skipped for which a predicate evaluates to false plus the first element for which it evaluates to true.
    static <T> Seq<T>
    Seq.skipUntilClosed(Stream<? extends T> stream, Predicate<? super T> predicate)
    Returns a stream with all elements skipped for which a predicate evaluates to false plus the first element for which it evaluates to true.
    default Seq<T>
    Seq.skipWhile(Predicate<? super T> predicate)
    Returns a stream with all elements skipped for which a predicate evaluates to true.
    static <T> Seq<T>
    Seq.skipWhile(Stream<? extends T> stream, Predicate<? super T> predicate)
    Returns a stream with all elements skipped for which a predicate evaluates to true.
    default Seq<T>
    Seq.skipWhileClosed(Predicate<? super T> predicate)
    Returns a stream with all elements skipped for which a predicate evaluates to true plus the first element for which it evaluates to false.
    static <T> Seq<T>
    Seq.skipWhileClosed(Stream<? extends T> stream, Predicate<? super T> predicate)
    Returns a stream with all elements skipped for which a predicate evaluates to true plus the first element for which it evaluates to false.
    default Seq<T>
    Seq.slice(long from, long to)
    Returns a limited interval from a given Stream.
    static <T> Seq<T>
    Seq.slice(Stream<? extends T> stream, long from, long to)
    Returns a limited interval from a given Stream.
    default Seq<Seq<T>>
    Seq.sliding(long size)
    Map this stream to a stream containing a sliding window over the previous stream.
    Seq.sorted()
     
    Seq.sorted(Comparator<? super T> comparator)
     
    default <U extends Comparable<? super U>>
    Seq<T>
    Seq.sorted(Function<? super T,? extends U> function)
    Sort by the results of function.
    default <U> Seq<T>
    Seq.sorted(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Sort by the results of function.
    default Seq<T>
    Seq.take(long maxSize)
    Alias for limit
    static <T, U> Seq<T>
    Seq.unfold(U seed, Function<? super U,Optional<Tuple2<T,U>>> unfolder)
    Unfold a function into a stream.
    default Seq<T>
    Seq.unordered()
    Returns this stream.
    default Seq<Window<T>>
    Seq.window()
    Map this stream to a windowed stream using the default partition and order.
    default Seq<Window<T>>
    Seq.window(long lower, long upper)
    Map this stream to a windowed stream using the default partition and order with frame.
    default Seq<Window<T>>
    Seq.window(Comparator<? super T> orderBy)
    Map this stream to a windowed stream using the default partition and a specific order.
    default Seq<Window<T>>
    Seq.window(Comparator<? super T> orderBy, long lower, long upper)
    Map this stream to a windowed stream using the default partition and a specific order with frame.
    default <U> Seq<Window<T>>
    Seq.window(Function<? super T,? extends U> partitionBy)
    Map this stream to a windowed stream using a specific partition and the default order.
    default <U> Seq<Window<T>>
    Seq.window(Function<? super T,? extends U> partitionBy, long lower, long upper)
    Map this stream to a windowed stream using a specific partition and the default order.
    default <U> Seq<Window<T>>
    Seq.window(Function<? super T,? extends U> partitionBy, Comparator<? super T> orderBy)
    Map this stream to a windowed stream using a specific partition and order.
    default <U> Seq<Window<T>>
    Seq.window(Function<? super T,? extends U> partitionBy, Comparator<? super T> orderBy, long lower, long upper)
    Map this stream to a windowed stream using a specific partition and order with frame.
    default Seq<Tuple1<Window<T>>>
    Seq.window(WindowSpecification<T> specification1)
    Map this stream to a windowed stream with 1 distinct windows.
    default Seq<Tuple2<Window<T>,Window<T>>>
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2)
    Map this stream to a windowed stream with 2 distinct windows.
    default Seq<Tuple3<Window<T>,Window<T>,Window<T>>>
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3)
    Map this stream to a windowed stream with 3 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4)
    Map this stream to a windowed stream with 4 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5)
    Map this stream to a windowed stream with 5 distinct windows.
    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.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7)
    Map this stream to a windowed stream with 7 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8)
    Map this stream to a windowed stream with 8 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8, WindowSpecification<T> specification9)
    Map this stream to a windowed stream with 9 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8, WindowSpecification<T> specification9, WindowSpecification<T> specification10)
    Map this stream to a windowed stream with 10 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8, WindowSpecification<T> specification9, WindowSpecification<T> specification10, WindowSpecification<T> specification11)
    Map this stream to a windowed stream with 11 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8, WindowSpecification<T> specification9, WindowSpecification<T> specification10, WindowSpecification<T> specification11, WindowSpecification<T> specification12)
    Map this stream to a windowed stream with 12 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8, WindowSpecification<T> specification9, WindowSpecification<T> specification10, WindowSpecification<T> specification11, WindowSpecification<T> specification12, WindowSpecification<T> specification13)
    Map this stream to a windowed stream with 13 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8, WindowSpecification<T> specification9, WindowSpecification<T> specification10, WindowSpecification<T> specification11, WindowSpecification<T> specification12, WindowSpecification<T> specification13, WindowSpecification<T> specification14)
    Map this stream to a windowed stream with 14 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8, WindowSpecification<T> specification9, WindowSpecification<T> specification10, WindowSpecification<T> specification11, WindowSpecification<T> specification12, WindowSpecification<T> specification13, WindowSpecification<T> specification14, WindowSpecification<T> specification15)
    Map this stream to a windowed stream with 15 distinct windows.
    Seq.window(WindowSpecification<T> specification1, WindowSpecification<T> specification2, WindowSpecification<T> specification3, WindowSpecification<T> specification4, WindowSpecification<T> specification5, WindowSpecification<T> specification6, WindowSpecification<T> specification7, WindowSpecification<T> specification8, WindowSpecification<T> specification9, WindowSpecification<T> specification10, WindowSpecification<T> specification11, WindowSpecification<T> specification12, WindowSpecification<T> specification13, WindowSpecification<T> specification14, WindowSpecification<T> specification15, WindowSpecification<T> specification16)
    Map this stream to a windowed stream with 16 distinct windows.
    Window.window()
    Stream all elements in the window.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.zip(Iterable<? extends T1> i1, Iterable<? extends T2> i2)
    Zip 2 streams into one.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.zip(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3)
    Zip 3 streams into one.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.zip(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3, Iterable<? extends T4> i4)
    Zip 4 streams into one.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.zip(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3, Iterable<? extends T4> i4, Iterable<? extends T5> i5)
    Zip 5 streams into one.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<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, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Iterable<? extends T7> i7)
    Zip 7 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8)
    Zip 8 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9)
    Zip 9 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10)
    Zip 10 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11)
    Zip 11 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12)
    Zip 12 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13)
    Zip 13 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14)
    Zip 14 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14, Iterable<? extends T15> i15)
    Zip 15 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14, Iterable<? extends T15> i15, Iterable<? extends T16> i16)
    Zip 16 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14, Iterable<? extends T15> i15, Iterable<? extends T16> i16, Function16<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? super T16,? extends R> zipper)
    Zip 16 streams into one using a Function16 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14, Iterable<? extends T15> i15, Function15<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? extends R> zipper)
    Zip 15 streams into one using a Function15 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Iterable<? extends T14> i14, Function14<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? extends R> zipper)
    Zip 14 streams into one using a Function14 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Iterable<? extends T13> i13, Function13<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? extends R> zipper)
    Zip 13 streams into one using a Function13 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Iterable<? extends T12> i12, Function12<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? extends R> zipper)
    Zip 12 streams into one using a Function12 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Iterable<? extends T11> i11, Function11<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? extends R> zipper)
    Zip 11 streams into one using a Function11 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Iterable<? extends T10> i10, Function10<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? extends R> zipper)
    Zip 10 streams into one using a Function10 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Iterable<? extends T9> i9, Function9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipper)
    Zip 9 streams into one using a Function9 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Iterable<? extends T8> i8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
    Zip 8 streams into one using a Function8 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, R>
    Seq<R>
    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, Iterable<? extends T7> i7, Function7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> zipper)
    Zip 7 streams into one using a Function7 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, R>
    Seq<R>
    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, Function6<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? extends R> zipper)
    Zip 6 streams into one using a Function6 to produce resulting values.
    static <T1, T2, T3, T4, T5, R>
    Seq<R>
    Seq.zip(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3, Iterable<? extends T4> i4, Iterable<? extends T5> i5, Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> zipper)
    Zip 5 streams into one using a Function5 to produce resulting values.
    static <T1, T2, T3, T4, R>
    Seq<R>
    Seq.zip(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3, Iterable<? extends T4> i4, Function4<? super T1,? super T2,? super T3,? super T4,? extends R> zipper)
    Zip 4 streams into one using a Function4 to produce resulting values.
    static <T1, T2, T3, R>
    Seq<R>
    Seq.zip(Iterable<? extends T1> i1, Iterable<? extends T2> i2, Iterable<? extends T3> i3, Function3<? super T1,? super T2,? super T3,? extends R> zipper)
    Zip 3 streams into one using a Function3 to produce resulting values.
    static <T1, T2, R> Seq<R>
    Seq.zip(Iterable<? extends T1> i1, Iterable<? extends T2> i2, BiFunction<? super T1,? super T2,? extends R> zipper)
    Zip 2 streams into one using a BiFunction to produce resulting values.
    default <U> Seq<Tuple2<T,U>>
    Seq.zip(Iterable<? extends U> other)
    Zip two streams into one.
    default <U, R> Seq<R>
    Seq.zip(Iterable<? extends U> other, BiFunction<? super T,? super U,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2)
    Zip 2 streams into one.
    static <T1, T2, R> Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, BiFunction<? super T1,? super T2,? extends R> zipper)
    Zip 2 streams into one using a BiFunction to produce resulting values.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3)
    Zip 3 streams into one.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4)
    Zip 4 streams into one.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5)
    Zip 5 streams into one.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6)
    Zip 6 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7)
    Zip 7 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8)
    Zip 8 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9)
    Zip 9 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10)
    Zip 10 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11)
    Zip 11 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12)
    Zip 12 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13)
    Zip 13 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14)
    Zip 14 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15)
    Zip 15 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15, Stream<? extends T16> s16)
    Zip 16 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15, Stream<? extends T16> s16, Function16<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? super T16,? extends R> zipper)
    Zip 16 streams into one using a Function16 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15, Function15<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? extends R> zipper)
    Zip 15 streams into one using a Function15 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Function14<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? extends R> zipper)
    Zip 14 streams into one using a Function14 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Function13<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? extends R> zipper)
    Zip 13 streams into one using a Function13 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Function12<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? extends R> zipper)
    Zip 12 streams into one using a Function12 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Function11<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? extends R> zipper)
    Zip 11 streams into one using a Function11 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Function10<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? extends R> zipper)
    Zip 10 streams into one using a Function10 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Function9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipper)
    Zip 9 streams into one using a Function9 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
    Zip 8 streams into one using a Function8 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Function7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> zipper)
    Zip 7 streams into one using a Function7 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Function6<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? extends R> zipper)
    Zip 6 streams into one using a Function6 to produce resulting values.
    static <T1, T2, T3, T4, T5, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> zipper)
    Zip 5 streams into one using a Function5 to produce resulting values.
    static <T1, T2, T3, T4, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Function4<? super T1,? super T2,? super T3,? super T4,? extends R> zipper)
    Zip 4 streams into one using a Function4 to produce resulting values.
    static <T1, T2, T3, R>
    Seq<R>
    Seq.zip(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Function3<? super T1,? super T2,? super T3,? extends R> zipper)
    Zip 3 streams into one using a Function3 to produce resulting values.
    default <U> Seq<Tuple2<T,U>>
    Seq.zip(Stream<? extends U> other)
    Zip two streams into one.
    default <U, R> Seq<R>
    Seq.zip(Stream<? extends U> other, BiFunction<? super T,? super U,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2)
    Zip 2 streams into one.
    static <T1, T2, R> Seq<R>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, BiFunction<? super T1,? super T2,? extends R> zipper)
    Zip 2 streams into one using a BiFunction to produce resulting values.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3)
    Zip 3 streams into one.
    static <T1, T2, T3, R>
    Seq<R>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Function3<? super T1,? super T2,? super T3,? extends R> zipper)
    Zip 3 streams into one using a Function3 to produce resulting values.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4)
    Zip 4 streams into one.
    static <T1, T2, T3, T4, R>
    Seq<R>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Function4<? super T1,? super T2,? super T3,? super T4,? extends R> zipper)
    Zip 4 streams into one using a Function4 to produce resulting values.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5)
    Zip 5 streams into one.
    static <T1, T2, T3, T4, T5, R>
    Seq<R>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5, Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> zipper)
    Zip 5 streams into one using a Function5 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<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, R>
    Seq<R>
    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, Function6<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? extends R> zipper)
    Zip 6 streams into one using a Function6 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Seq<? extends T7> s7)
    Zip 7 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, R>
    Seq<R>
    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, Seq<? extends T7> s7, Function7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> zipper)
    Zip 7 streams into one using a Function7 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8)
    Zip 8 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
    Zip 8 streams into one using a Function8 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9)
    Zip 9 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Function9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipper)
    Zip 9 streams into one using a Function9 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10)
    Zip 10 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Function10<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? extends R> zipper)
    Zip 10 streams into one using a Function10 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11)
    Zip 11 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Function11<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? extends R> zipper)
    Zip 11 streams into one using a Function11 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12)
    Zip 12 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Function12<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? extends R> zipper)
    Zip 12 streams into one using a Function12 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13)
    Zip 13 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Function13<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? extends R> zipper)
    Zip 13 streams into one using a Function13 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14)
    Zip 14 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Function14<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? extends R> zipper)
    Zip 14 streams into one using a Function14 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15)
    Zip 15 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Function15<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? extends R> zipper)
    Zip 15 streams into one using a Function15 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16)
    Zip 16 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16, Function16<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? super T16,? extends R> zipper)
    Zip 16 streams into one using a Function16 to produce resulting values.
    default <U> Seq<Tuple2<T,U>>
    Seq.zip(Seq<? extends U> other)
    Zip two streams into one.
    default <U, R> Seq<R>
    Seq.zip(Seq<? extends U> other, BiFunction<? super T,? super U,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, Iterable<? extends T13> s13, Iterable<? extends T14> s14, Iterable<? extends T15> s15, Iterable<? extends T16> s16, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, T16 default16)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, Iterable<? extends T13> s13, Iterable<? extends T14> s14, Iterable<? extends T15> s15, Iterable<? extends T16> s16, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, T16 default16, Function16<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? super T16,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, Iterable<? extends T13> s13, Iterable<? extends T14> s14, Iterable<? extends T15> s15, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, Iterable<? extends T13> s13, Iterable<? extends T14> s14, Iterable<? extends T15> s15, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, Function15<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, Iterable<? extends T13> s13, Iterable<? extends T14> s14, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14)
    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, T7, T8, T9, T10, T11, T12, T13, T14, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, Iterable<? extends T13> s13, Iterable<? extends T14> s14, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, Function14<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, Iterable<? extends T13> s13, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13)
    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, T7, T8, T9, T10, T11, T12, T13, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, Iterable<? extends T13> s13, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, Function13<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12)
    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, T7, T8, T9, T10, T11, T12, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, Iterable<? extends T12> s12, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, Function12<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? extends R> zipper)
    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, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11)
    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, T7, T8, T9, T10, T11, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, Iterable<? extends T11> s11, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, Function11<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? extends R> zipper)
    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, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10)
    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, T7, T8, T9, T10, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, Iterable<? extends T10> s10, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, Function10<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? extends R> zipper)
    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, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9)
    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, T7, T8, T9, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, Iterable<? extends T9> s9, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, Function9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipper)
    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, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8)
    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, T7, T8, R>
    Seq<R>
    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, Iterable<? extends T7> s7, Iterable<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
    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, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Iterable<? extends T7> s7, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7)
    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, T7, R>
    Seq<R>
    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, Iterable<? extends T7> s7, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, Function7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> zipper)
    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<Tuple6<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, R>
    Seq<R>
    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, Function6<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? extends R> zipper)
    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>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.zipAll(Iterable<? extends T1> s1, Iterable<? extends T2> s2, Iterable<? extends T3> s3, Iterable<? extends T4> s4, Iterable<? extends T5> s5, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5)
    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, R>
    Seq<R>
    Seq.zipAll(Iterable<? extends T1> s1, Iterable<? extends T2> s2, Iterable<? extends T3> s3, Iterable<? extends T4> s4, Iterable<? extends T5> s5, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> zipper)
    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>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.zipAll(Iterable<? extends T1> s1, Iterable<? extends T2> s2, Iterable<? extends T3> s3, Iterable<? extends T4> s4, T1 default1, T2 default2, T3 default3, T4 default4)
    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, R>
    Seq<R>
    Seq.zipAll(Iterable<? extends T1> s1, Iterable<? extends T2> s2, Iterable<? extends T3> s3, Iterable<? extends T4> s4, T1 default1, T2 default2, T3 default3, T4 default4, Function4<? super T1,? super T2,? super T3,? super T4,? extends R> zipper)
    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> Seq<Tuple3<T1,T2,T3>>
    Seq.zipAll(Iterable<? extends T1> s1, Iterable<? extends T2> s2, Iterable<? extends T3> s3, T1 default1, T2 default2, T3 default3)
    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, R>
    Seq<R>
    Seq.zipAll(Iterable<? extends T1> s1, Iterable<? extends T2> s2, Iterable<? extends T3> s3, T1 default1, T2 default2, T3 default3, Function3<? super T1,? super T2,? super T3,? extends R> zipper)
    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> Seq<Tuple2<T1,T2>>
    Seq.zipAll(Iterable<? extends T1> s1, Iterable<? extends T2> s2, T1 default1, T2 default2)
    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, R> Seq<R>
    Seq.zipAll(Iterable<? extends T1> s1, Iterable<? extends T2> s2, T1 default1, T2 default2, BiFunction<? super T1,? super T2,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15, Stream<? extends T16> s16, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, T16 default16)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15, Stream<? extends T16> s16, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, T16 default16, Function16<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? super T16,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, Stream<? extends T15> s15, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, Function15<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14)
    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, T7, T8, T9, T10, T11, T12, T13, T14, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, Stream<? extends T14> s14, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, Function14<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13)
    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, T7, T8, T9, T10, T11, T12, T13, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, Stream<? extends T13> s13, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, Function13<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12)
    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, T7, T8, T9, T10, T11, T12, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, Stream<? extends T12> s12, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, Function12<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? extends R> zipper)
    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, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11)
    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, T7, T8, T9, T10, T11, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, Stream<? extends T11> s11, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, Function11<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? extends R> zipper)
    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, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10)
    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, T7, T8, T9, T10, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, Stream<? extends T10> s10, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, Function10<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? extends R> zipper)
    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, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9)
    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, T7, T8, T9, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, Stream<? extends T9> s9, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, Function9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipper)
    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, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8)
    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, T7, T8, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, Stream<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
    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, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7)
    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, T7, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, Stream<? extends T7> s7, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, Function7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> zipper)
    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<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, 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.
    static <T1, T2, T3, T4, T5, T6, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, Stream<? extends T6> s6, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, Function6<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? extends R> zipper)
    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>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5)
    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, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, Stream<? extends T5> s5, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> zipper)
    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>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, T1 default1, T2 default2, T3 default3, T4 default4)
    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, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, Stream<? extends T4> s4, T1 default1, T2 default2, T3 default3, T4 default4, Function4<? super T1,? super T2,? super T3,? super T4,? extends R> zipper)
    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> Seq<Tuple3<T1,T2,T3>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, T1 default1, T2 default2, T3 default3)
    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, R>
    Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, Stream<? extends T3> s3, T1 default1, T2 default2, T3 default3, Function3<? super T1,? super T2,? super T3,? extends R> zipper)
    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> Seq<Tuple2<T1,T2>>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, T1 default1, T2 default2)
    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, R> Seq<R>
    Seq.zipAll(Stream<? extends T1> s1, Stream<? extends T2> s2, T1 default1, T2 default2, BiFunction<? super T1,? super T2,? extends R> zipper)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, T16 default16)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, T16 default16, Function16<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? super T16,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, Function15<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14)
    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, T7, T8, T9, T10, T11, T12, T13, T14, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, Function14<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13)
    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, T7, T8, T9, T10, T11, T12, T13, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, Function13<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12)
    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, T7, T8, T9, T10, T11, T12, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, Function12<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11)
    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, T7, T8, T9, T10, T11, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, Function11<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10)
    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, T7, T8, T9, T10, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, Function10<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9)
    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, T7, T8, T9, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, Function9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8)
    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, T7, T8, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Seq<? extends T7> s7, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7)
    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, T7, R>
    Seq<R>
    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, Seq<? extends T7> s7, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, Function7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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<Tuple6<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, R>
    Seq<R>
    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, Function6<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5)
    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, R>
    Seq<R>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, T1 default1, T2 default2, T3 default3, T4 default4)
    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, R>
    Seq<R>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, T1 default1, T2 default2, T3 default3, T4 default4, Function4<? super T1,? super T2,? super T3,? super T4,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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> Seq<Tuple3<T1,T2,T3>>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, T1 default1, T2 default2, T3 default3)
    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, R>
    Seq<R>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, T1 default1, T2 default2, T3 default3, Function3<? super T1,? super T2,? super T3,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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> Seq<Tuple2<T1,T2>>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, T1 default1, T2 default2)
    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, R> Seq<R>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, T1 default1, T2 default2, BiFunction<? super T1,? super T2,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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.
    default Seq<Tuple2<T,Long>>
    Zip a Stream with a corresponding Stream of indexes.
    static <T> Seq<Tuple2<T,Long>>
    Seq.zipWithIndex(Iterable<? extends T> iterable)
    Zip a Stream with a corresponding Stream of indexes.
    static <T, R> Seq<R>
    Seq.zipWithIndex(Iterable<? extends T> iterable, BiFunction<? super T,? super Long,? extends R> zipper)
    Zip a stream with indexes into one using a BiFunction to produce resulting values.
    default <R> Seq<R>
    Seq.zipWithIndex(BiFunction<? super T,? super Long,? extends R> zipper)
    Zip a stream with indexes into one using a BiFunction to produce resulting values.
    static <T> Seq<Tuple2<T,Long>>
    Seq.zipWithIndex(Stream<? extends T> stream)
    Zip a Stream with a corresponding Stream of indexes.
    static <T, R> Seq<R>
    Seq.zipWithIndex(Stream<? extends T> stream, BiFunction<? super T,? super Long,? extends R> zipper)
    Zip a stream with indexes into one using a BiFunction to produce resulting values.
    static <T> Seq<Tuple2<T,Long>>
    Seq.zipWithIndex(Seq<? extends T> stream)
    Zip a Stream with a corresponding Stream of indexes.
    static <T, R> Seq<R>
    Seq.zipWithIndex(Seq<? extends T> stream, BiFunction<? super T,? super Long,? extends R> zipper)
    Zip a stream with indexes into one using a BiFunction to produce resulting values.
    Methods in org.jooq.lambda that return types with arguments of type Seq
    Modifier and Type
    Method
    Description
    static <T> Collector<T,?,Seq<T>>
    Agg.dropping(long n)
    Get a Collector that skip the first n elements of a collection.
    default Tuple2<Seq<T>,Seq<T>>
    Seq.duplicate()
    Duplicate a Streams into two equivalent Streams.
    default Tuple2<Seq<T>,Seq<T>>
    Seq.duplicate()
    Duplicate a Streams into two equivalent Streams.
    static <T> Tuple2<Seq<T>,Seq<T>>
    Seq.duplicate(Stream<? extends T> stream)
    Duplicate a Streams into two equivalent Streams.
    static <T> Tuple2<Seq<T>,Seq<T>>
    Seq.duplicate(Stream<? extends T> stream)
    Duplicate a Streams into two equivalent Streams.
    static <K, T> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Iterable<? extends T> iterable, Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function
    default <K> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function.
    static <K, T> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Stream<? extends T> stream, Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function
    static <K, T> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Seq<? extends T> seq, Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function
    static <T extends Comparable<? super T>>
    Collector<T,?,Seq<T>>
    Agg.maxAll()
    Get a Collector that calculates the MAX() function, producing multiple results.
    static <T> Collector<T,?,Seq<T>>
    Agg.maxAll(Comparator<? super T> comparator)
    Get a Collector that calculates the MAX() function, producing multiple results.
    static <T, U extends Comparable<? super U>>
    Collector<T,?,Seq<U>>
    Agg.maxAll(Function<? super T,? extends U> function)
    Get a Collector that calculates the MAX() function, producing multiple results.
    static <T, U> Collector<T,?,Seq<U>>
    Agg.maxAll(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get a Collector that calculates the MAX() function, producing multiple results.
    static <T, U extends Comparable<? super U>>
    Collector<T,?,Seq<T>>
    Agg.maxAllBy(Function<? super T,? extends U> function)
    Get a Collector that calculates the MAX() function, producing multiple results.
    static <T, U> Collector<T,?,Seq<T>>
    Agg.maxAllBy(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get a Collector that calculates the MAX() function, producing multiple results.
    static <T extends Comparable<? super T>>
    Collector<T,?,Seq<T>>
    Agg.medianAll()
    Get a Collector that calculates the PERCENTILE_DISC(percentile) function given a specific ordering, producing multiple results.
    static <T> Collector<T,?,Seq<T>>
    Agg.medianAll(Comparator<? super T> comparator)
    Get a Collector that calculates the PERCENTILE_DISC(percentile) function given a specific ordering, producing multiple results.
    static <T, U extends Comparable<? super U>>
    Collector<T,?,Seq<T>>
    Agg.medianAllBy(Function<? super T,? extends U> function)
    Get a Collector that calculates the derived PERCENTILE_DISC(percentile) function given a specific ordering, producing multiple results.
    static <T, U> Collector<T,?,Seq<T>>
    Agg.medianAllBy(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get a Collector that calculates the derived MEDIAN() function given natural ordering, producing multiple results.
    static <T extends Comparable<? super T>>
    Collector<T,?,Seq<T>>
    Agg.minAll()
    Get a Collector that calculates the MIN() function, producing multiple results.
    static <T> Collector<T,?,Seq<T>>
    Agg.minAll(Comparator<? super T> comparator)
    Get a Collector that calculates the MIN() function, producing multiple results.
    static <T, U extends Comparable<? super U>>
    Collector<T,?,Seq<U>>
    Agg.minAll(Function<? super T,? extends U> function)
    Get a Collector that calculates the MIN() function, producing multiple results.
    static <T, U> Collector<T,?,Seq<U>>
    Agg.minAll(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get a Collector that calculates the MIN() function, producing multiple results.
    static <T, U extends Comparable<? super U>>
    Collector<T,?,Seq<T>>
    Agg.minAllBy(Function<? super T,? extends U> function)
    Get a Collector that calculates the MIN() function, producing multiple results.
    static <T, U> Collector<T,?,Seq<T>>
    Agg.minAllBy(Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get a Collector that calculates the MIN() function, producing multiple results.
    static <T> Collector<T,?,Seq<T>>
    Agg.modeAll()
    Get a Collector that calculates the MODE() function.
    static <T, U> Collector<T,?,Seq<T>>
    Agg.modeAllBy(Function<? super T,? extends U> function)
    Get a Collector that calculates the MODE() function.
    default Tuple2<Seq<T>,Seq<T>>
    Seq.partition(Predicate<? super T> predicate)
    Partition a stream into two given a predicate.
    default Tuple2<Seq<T>,Seq<T>>
    Seq.partition(Predicate<? super T> predicate)
    Partition a stream into two given a predicate.
    static <T> Tuple2<Seq<T>,Seq<T>>
    Seq.partition(Stream<? extends T> stream, Predicate<? super T> predicate)
    Partition a stream into two given a predicate.
    static <T> Tuple2<Seq<T>,Seq<T>>
    Seq.partition(Stream<? extends T> stream, Predicate<? super T> predicate)
    Partition a stream into two given a predicate.
    static <T extends Comparable<? super T>>
    Collector<T,?,Seq<T>>
    Agg.percentileAll(double percentile)
    Get a Collector that calculates the PERCENTILE_DISC(percentile) function given a specific ordering, producing multiple results.
    static <T> Collector<T,?,Seq<T>>
    Agg.percentileAll(double percentile, Comparator<? super T> comparator)
    Get a Collector that calculates the PERCENTILE_DISC(percentile) function given a specific ordering, producing multiple results.
    static <T, U extends Comparable<? super U>>
    Collector<T,?,Seq<T>>
    Agg.percentileAllBy(double percentile, Function<? super T,? extends U> function)
    Get a Collector that calculates the derived PERCENTILE_DISC(percentile) function given a specific ordering, producing multiple results.
    static <T, U> Collector<T,?,Seq<T>>
    Agg.percentileAllBy(double percentile, Function<? super T,? extends U> function, Comparator<? super U> comparator)
    Get a Collector that calculates the derived PERCENTILE_DISC(percentile) function given a specific ordering, producing multiple results.
    default Seq<Seq<T>>
    Seq.sliding(long size)
    Map this stream to a stream containing a sliding window over the previous stream.
    default Tuple2<Seq<T>,Seq<T>>
    Seq.splitAt(long position)
    Split a stream at a given position.
    default Tuple2<Seq<T>,Seq<T>>
    Seq.splitAt(long position)
    Split a stream at a given position.
    static <T> Tuple2<Seq<T>,Seq<T>>
    Seq.splitAt(Stream<? extends T> stream, long position)
    Split a stream at a given position.
    static <T> Tuple2<Seq<T>,Seq<T>>
    Seq.splitAt(Stream<? extends T> stream, long position)
    Split a stream at a given position.
    default Tuple2<Optional<T>,Seq<T>>
    Split a stream at the head.
    static <T> Tuple2<Optional<T>,Seq<T>>
    Seq.splitAtHead(Stream<T> stream)
    Split a stream at the head.
    static <T> Collector<T,?,Seq<T>>
    Agg.taking(long n)
    Get a Collector that takes the first n elements from a collection.
    static <T1, T2> Tuple2<Seq<T1>,Seq<T2>>
    Seq.unzip(Iterable<Tuple2<T1,T2>> iterable)
    Unzip one Stream into two.
    static <T1, T2> Tuple2<Seq<T1>,Seq<T2>>
    Seq.unzip(Iterable<Tuple2<T1,T2>> iterable)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Iterable<Tuple2<T1,T2>> iterable, BiFunction<T1,T2,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Iterable<Tuple2<T1,T2>> iterable, BiFunction<T1,T2,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Iterable<Tuple2<T1,T2>> iterable, Function<Tuple2<T1,T2>,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Iterable<Tuple2<T1,T2>> iterable, Function<Tuple2<T1,T2>,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Iterable<Tuple2<T1,T2>> iterable, Function<T1,U1> leftUnzipper, Function<T2,U2> rightUnzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Iterable<Tuple2<T1,T2>> iterable, Function<T1,U1> leftUnzipper, Function<T2,U2> rightUnzipper)
    Unzip one Stream into two.
    static <K, V> Tuple2<Seq<K>,Seq<V>>
    Seq.unzip(Map<? extends K,? extends V> map)
    Unzip a Map into its keys and values.
    static <K, V> Tuple2<Seq<K>,Seq<V>>
    Seq.unzip(Map<? extends K,? extends V> map)
    Unzip a Map into its keys and values.
    static <T1, T2> Tuple2<Seq<T1>,Seq<T2>>
    Seq.unzip(Stream<Tuple2<T1,T2>> stream)
    Unzip one Stream into two.
    static <T1, T2> Tuple2<Seq<T1>,Seq<T2>>
    Seq.unzip(Stream<Tuple2<T1,T2>> stream)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Stream<Tuple2<T1,T2>> stream, BiFunction<T1,T2,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Stream<Tuple2<T1,T2>> stream, BiFunction<T1,T2,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Stream<Tuple2<T1,T2>> stream, Function<Tuple2<T1,T2>,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Stream<Tuple2<T1,T2>> stream, Function<Tuple2<T1,T2>,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Stream<Tuple2<T1,T2>> stream, Function<T1,U1> leftUnzipper, Function<T2,U2> rightUnzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Stream<Tuple2<T1,T2>> stream, Function<T1,U1> leftUnzipper, Function<T2,U2> rightUnzipper)
    Unzip one Stream into two.
    static <T1, T2> Tuple2<Seq<T1>,Seq<T2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream)
    Unzip one Stream into two.
    static <T1, T2> Tuple2<Seq<T1>,Seq<T2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, BiFunction<T1,T2,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, BiFunction<T1,T2,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, Function<Tuple2<T1,T2>,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, Function<Tuple2<T1,T2>,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, Function<T1,U1> leftUnzipper, Function<T2,U2> rightUnzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, Function<T1,U1> leftUnzipper, Function<T2,U2> rightUnzipper)
    Unzip one Stream into two.
    Methods in org.jooq.lambda with parameters of type Seq
    Modifier and Type
    Method
    Description
    default Seq<T>
    Seq.append(Seq<? extends T> other)
    Concatenate two streams.
    default Seq<T>
    Seq.concat(Seq<? extends T> other)
    Concatenate two streams.
    static <T> Seq<T>
    Seq.concat(Seq<? extends T>... streams)
    Concatenate a number of streams.
    default boolean
    Seq.containsAll(Seq<? extends T> other)
    Check whether this stream contains all given values.
    default boolean
    Seq.containsAny(Seq<? extends T> other)
    Check whether this stream contains any of the given values.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2)
    Cross apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3)
    Cross apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4)
    Cross apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5)
    Cross apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6)
    Cross apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7)
    Cross apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8)
    Cross apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9)
    Cross apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10)
    Cross apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11)
    Cross apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12)
    Cross apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13)
    Cross apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14)
    Cross apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15)
    Cross apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15, Function<? super T15,? extends Seq<? extends T16>> function16)
    Cross apply 16 functions to a stream.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossJoin(Seq<? extends T1> s1, Seq<? extends T2> s2)
    Cross join 2 streams into one.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossJoin(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3)
    Cross join 3 streams into one.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossJoin(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4)
    Cross join 4 streams into one.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossJoin(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5)
    Cross join 5 streams into one.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<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, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Seq<? extends T7> s7)
    Cross join 7 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8)
    Cross join 8 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9)
    Cross join 9 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10)
    Cross join 10 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11)
    Cross join 11 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12)
    Cross join 12 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13)
    Cross join 13 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14)
    Cross join 14 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15)
    Cross join 15 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16)
    Cross join 16 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.crossJoin(Seq<? extends U> other)
    Cross join 2 streams into one.
    static <T> Seq<T>
    Seq.cycle(Seq<? extends T> stream)
    Repeat a stream infinitely.
    static <T> Seq<T>
    Seq.cycle(Seq<? extends T> stream, long times)
    Repeat a stream a certain amount of times.
    static <T, U> U
    Seq.foldLeft(Seq<? extends T> stream, U seed, BiFunction<? super U,? super T,? extends U> function)
    Fold a stream to the left.
    static <T, U> U
    Seq.foldRight(Seq<? extends T> stream, U seed, BiFunction<? super T,? super U,? extends U> function)
    Fold a stream to the right.
    static <K, T> Seq<Tuple2<K,Seq<T>>>
    Seq.grouped(Seq<? extends T> seq, Function<? super T,? extends K> classifier)
    Classify this stream's elements according to a given classifier function
    static <K, T, A, D> Seq<Tuple2<K,D>>
    Seq.grouped(Seq<? extends T> seq, Function<? super T,? extends K> classifier, Collector<? super T,A,D> downstream)
    Classify this stream's elements according to a given classifier function and collect each class's elements using a collector.
    default <U> Seq<Tuple2<T,U>>
    Seq.innerJoin(Seq<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Inner join 2 streams into one.
    default <U> Seq<Tuple2<T,U>>
    Seq.leftOuterJoin(Seq<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Left outer join 2 streams into one.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2)
    Outer apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3)
    Outer apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4)
    Outer apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5)
    Outer apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6)
    Outer apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7)
    Outer apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8)
    Outer apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9)
    Outer apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10)
    Outer apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11)
    Outer apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12)
    Outer apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13)
    Outer apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14)
    Outer apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15)
    Outer apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15, Function<? super T15,? extends Seq<? extends T16>> function16)
    Outer apply 16 functions to a stream.
    default Seq<T>
    Seq.prepend(Seq<? extends T> other)
    Concatenate two streams.
    default Seq<T>
    Seq.removeAll(Seq<? extends T> other)
    Return a new stream where all occurrences of the arguments are removed.
    default Seq<T>
    Seq.retainAll(Seq<? extends T> other)
    Return a new stream where only occurrences of the arguments are retained.
    static <T> Seq<T>
    Seq.reverse(Seq<? extends T> stream)
    Reverse a stream.
    default <U> Seq<Tuple2<T,U>>
    Seq.rightOuterJoin(Seq<? extends U> other, BiPredicate<? super T,? super U> predicate)
    Right outer join 2 streams into one.
    static <T, U> Seq<U>
    Seq.scanLeft(Seq<? extends T> stream, U seed, BiFunction<? super U,? super T,? extends U> function)
    Scan a stream to the left.
    static <T, U> Seq<U>
    Seq.scanRight(Seq<? extends T> stream, U seed, BiFunction<? super T,? super U,? extends U> function)
    Scan a stream to the right.
    static <T> Seq<T>
    Seq.seq(Seq<? extends T> stream)
    Wrap a Stream into a Seq.
    static <T> Seq<T>
    Seq.shuffle(Seq<? extends T> stream)
    Shuffle a stream
    static <T> Seq<T>
    Seq.shuffle(Seq<? extends T> stream, Random random)
    Shuffle a stream using specified source of randomness
    static <T1, T2> Tuple2<Seq<T1>,Seq<T2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, BiFunction<T1,T2,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, Function<Tuple2<T1,T2>,Tuple2<U1,U2>> unzipper)
    Unzip one Stream into two.
    static <T1, T2, U1, U2>
    Tuple2<Seq<U1>,Seq<U2>>
    Seq.unzip(Seq<Tuple2<T1,T2>> stream, Function<T1,U1> leftUnzipper, Function<T2,U2> rightUnzipper)
    Unzip one Stream into two.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2)
    Zip 2 streams into one.
    static <T1, T2, R> Seq<R>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, BiFunction<? super T1,? super T2,? extends R> zipper)
    Zip 2 streams into one using a BiFunction to produce resulting values.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3)
    Zip 3 streams into one.
    static <T1, T2, T3, R>
    Seq<R>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Function3<? super T1,? super T2,? super T3,? extends R> zipper)
    Zip 3 streams into one using a Function3 to produce resulting values.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4)
    Zip 4 streams into one.
    static <T1, T2, T3, T4, R>
    Seq<R>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Function4<? super T1,? super T2,? super T3,? super T4,? extends R> zipper)
    Zip 4 streams into one using a Function4 to produce resulting values.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5)
    Zip 5 streams into one.
    static <T1, T2, T3, T4, T5, R>
    Seq<R>
    Seq.zip(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5, Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> zipper)
    Zip 5 streams into one using a Function5 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<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, R>
    Seq<R>
    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, Function6<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? extends R> zipper)
    Zip 6 streams into one using a Function6 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Seq<? extends T7> s7)
    Zip 7 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, R>
    Seq<R>
    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, Seq<? extends T7> s7, Function7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> zipper)
    Zip 7 streams into one using a Function7 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8)
    Zip 8 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
    Zip 8 streams into one using a Function8 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9)
    Zip 9 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Function9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipper)
    Zip 9 streams into one using a Function9 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10)
    Zip 10 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Function10<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? extends R> zipper)
    Zip 10 streams into one using a Function10 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11)
    Zip 11 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Function11<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? extends R> zipper)
    Zip 11 streams into one using a Function11 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12)
    Zip 12 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Function12<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? extends R> zipper)
    Zip 12 streams into one using a Function12 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13)
    Zip 13 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Function13<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? extends R> zipper)
    Zip 13 streams into one using a Function13 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14)
    Zip 14 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Function14<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? extends R> zipper)
    Zip 14 streams into one using a Function14 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15)
    Zip 15 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Function15<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? extends R> zipper)
    Zip 15 streams into one using a Function15 to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16)
    Zip 16 streams into one.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16, Function16<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? super T16,? extends R> zipper)
    Zip 16 streams into one using a Function16 to produce resulting values.
    default <U> Seq<Tuple2<T,U>>
    Seq.zip(Seq<? extends U> other)
    Zip two streams into one.
    default <U, R> Seq<R>
    Seq.zip(Seq<? extends U> other, BiFunction<? super T,? super U,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, T16 default16)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, Seq<? extends T16> s16, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, T16 default16, Function16<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? super T16,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15)
    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, T7, T8, T9, T10, T11, T12, T13, T14, T15, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, Seq<? extends T15> s15, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, T15 default15, Function15<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? super T15,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14)
    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, T7, T8, T9, T10, T11, T12, T13, T14, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, Seq<? extends T14> s14, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, T14 default14, Function14<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? super T14,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13)
    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, T7, T8, T9, T10, T11, T12, T13, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, Seq<? extends T13> s13, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, T13 default13, Function13<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? super T13,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12)
    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, T7, T8, T9, T10, T11, T12, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, Seq<? extends T12> s12, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, T12 default12, Function12<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? super T12,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11)
    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, T7, T8, T9, T10, T11, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, Seq<? extends T11> s11, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, T11 default11, Function11<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? super T11,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10)
    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, T7, T8, T9, T10, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, Seq<? extends T10> s10, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, T10 default10, Function10<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? super T10,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9)
    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, T7, T8, T9, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, Seq<? extends T9> s9, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, T9 default9, Function9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8)
    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, T7, T8, R>
    Seq<R>
    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, Seq<? extends T7> s7, Seq<? extends T8> s8, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, T8 default8, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    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, Seq<? extends T7> s7, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7)
    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, T7, R>
    Seq<R>
    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, Seq<? extends T7> s7, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, T6 default6, T7 default7, Function7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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<Tuple6<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, R>
    Seq<R>
    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, Function6<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5)
    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, R>
    Seq<R>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, Seq<? extends T5> s5, T1 default1, T2 default2, T3 default3, T4 default4, T5 default5, Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, T1 default1, T2 default2, T3 default3, T4 default4)
    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, R>
    Seq<R>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, Seq<? extends T4> s4, T1 default1, T2 default2, T3 default3, T4 default4, Function4<? super T1,? super T2,? super T3,? super T4,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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> Seq<Tuple3<T1,T2,T3>>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, T1 default1, T2 default2, T3 default3)
    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, R>
    Seq<R>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, Seq<? extends T3> s3, T1 default1, T2 default2, T3 default3, Function3<? super T1,? super T2,? super T3,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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> Seq<Tuple2<T1,T2>>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, T1 default1, T2 default2)
    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, R> Seq<R>
    Seq.zipAll(Seq<? extends T1> s1, Seq<? extends T2> s2, T1 default1, T2 default2, BiFunction<? super T1,? super T2,? extends R> zipper)
    Zip two streams into one using a BiFunction to produce resulting values, 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 <T> Seq<Tuple2<T,Long>>
    Seq.zipWithIndex(Seq<? extends T> stream)
    Zip a Stream with a corresponding Stream of indexes.
    static <T, R> Seq<R>
    Seq.zipWithIndex(Seq<? extends T> stream, BiFunction<? super T,? super Long,? extends R> zipper)
    Zip a stream with indexes into one using a BiFunction to produce resulting values.
    Method parameters in org.jooq.lambda with type arguments of type Seq
    Modifier and Type
    Method
    Description
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2)
    Cross apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3)
    Cross apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4)
    Cross apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5)
    Cross apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6)
    Cross apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7)
    Cross apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8)
    Cross apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9)
    Cross apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10)
    Cross apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11)
    Cross apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12)
    Cross apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13)
    Cross apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14)
    Cross apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15)
    Cross apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.crossApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15, Function<? super T15,? extends Seq<? extends T16>> function16)
    Cross apply 16 functions to a stream.
    static <T1, T2> Seq<Tuple2<T1,T2>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2)
    Outer apply 2 functions to a stream.
    static <T1, T2, T3> Seq<Tuple3<T1,T2,T3>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3)
    Outer apply 3 functions to a stream.
    static <T1, T2, T3, T4>
    Seq<Tuple4<T1,T2,T3,T4>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4)
    Outer apply 4 functions to a stream.
    static <T1, T2, T3, T4, T5>
    Seq<Tuple5<T1,T2,T3,T4,T5>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5)
    Outer apply 5 functions to a stream.
    static <T1, T2, T3, T4, T5, T6>
    Seq<Tuple6<T1,T2,T3,T4,T5,T6>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6)
    Outer apply 6 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7>
    Seq<Tuple7<T1,T2,T3,T4,T5,T6,T7>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7)
    Outer apply 7 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8>
    Seq<Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8)
    Outer apply 8 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Seq<Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9)
    Outer apply 9 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
    Seq<Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10)
    Outer apply 10 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
    Seq<Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11)
    Outer apply 11 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
    Seq<Tuple12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12)
    Outer apply 12 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>
    Seq<Tuple13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13)
    Outer apply 13 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>
    Seq<Tuple14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14)
    Outer apply 14 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>
    Seq<Tuple15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15)
    Outer apply 15 functions to a stream.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>
    Seq<Tuple16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>
    Seq.outerApply(Seq<? extends T1> seq, Function<? super T1,? extends Seq<? extends T2>> function2, Function<? super T2,? extends Seq<? extends T3>> function3, Function<? super T3,? extends Seq<? extends T4>> function4, Function<? super T4,? extends Seq<? extends T5>> function5, Function<? super T5,? extends Seq<? extends T6>> function6, Function<? super T6,? extends Seq<? extends T7>> function7, Function<? super T7,? extends Seq<? extends T8>> function8, Function<? super T8,? extends Seq<? extends T9>> function9, Function<? super T9,? extends Seq<? extends T10>> function10, Function<? super T10,? extends Seq<? extends T11>> function11, Function<? super T11,? extends Seq<? extends T12>> function12, Function<? super T12,? extends Seq<? extends T13>> function13, Function<? super T13,? extends Seq<? extends T14>> function14, Function<? super T14,? extends Seq<? extends T15>> function15, Function<? super T15,? extends Seq<? extends T16>> function16)
    Outer apply 16 functions to a stream.
    default <U> U
    Seq.transform(Function<? super Seq<T>,? extends U> transformer)
    Transform this stream into a new type.
  • Uses of Seq in org.jooq.lambda.tuple

    Methods in org.jooq.lambda.tuple that return Seq
    Modifier and Type
    Method
    Description
    Seq<?>
    Tuple.toSeq()
    Get a Seq representation of this tuple.
    final Seq<?>
    Tuple0.toSeq()
     
    final Seq<?>
    Tuple1.toSeq()
     
    final Seq<?>
    Tuple10.toSeq()
     
    final Seq<?>
    Tuple11.toSeq()
     
    final Seq<?>
    Tuple12.toSeq()
     
    final Seq<?>
    Tuple13.toSeq()
     
    final Seq<?>
    Tuple14.toSeq()
     
    final Seq<?>
    Tuple15.toSeq()
     
    final Seq<?>
    Tuple16.toSeq()
     
    final Seq<?>
    Tuple2.toSeq()
     
    final Seq<?>
    Tuple3.toSeq()
     
    final Seq<?>
    Tuple4.toSeq()
     
    final Seq<?>
    Tuple5.toSeq()
     
    final Seq<?>
    Tuple6.toSeq()
     
    final Seq<?>
    Tuple7.toSeq()
     
    final Seq<?>
    Tuple8.toSeq()
     
    final Seq<?>
    Tuple9.toSeq()