| Package | Description |
|---|---|
| org.jooq.lambda |
This package contains useful extensions for interoperation with Java 8's lambda expressions and
FunctionalInterface types.
|
| org.jooq.lambda.function |
This package contains function types of various degrees.
|
| org.jooq.lambda.tuple |
This package contains tuple types of various degrees.
|
| Modifier and Type | Method and Description |
|---|---|
static <T1 |
Seq.zip(Iterable
Zip 6 streams into one using a
Function6 to produce resulting values.
|
static <T1 |
Seq.zip(Seq
Zip 6 streams into one using a
Function6 to produce resulting values.
|
static <T1 |
Seq.zip(Stream
Zip 6 streams into one using a
Function6 to produce resulting values.
|
| Modifier and Type | Method and Description |
|---|---|
default Function6 |
Function7.curry(T1 v1)
Partially apply this function to the arguments.
|
default Function6 |
Function8.curry(T1 v1, T2 v2)
Partially apply this function to the arguments.
|
default Function6 |
Function9.curry(T1 v1, T2 v2, T3 v3)
Partially apply this function to the arguments.
|
default Function6 |
Function10.curry(T1 v1, T2 v2, T3 v3, T4 v4)
Partially apply this function to the arguments.
|
default Function6 |
Function11.curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5)
Partially apply this function to the arguments.
|
default Function6 |
Function12.curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6)
Partially apply this function to the arguments.
|
default Function6 |
Function13.curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7)
Partially apply this function to the arguments.
|
default Function6 |
Function14.curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8)
Partially apply this function to the arguments.
|
default Function6 |
Function15.curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9)
Partially apply this function to the arguments.
|
default Function6 |
Function16.curry(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10)
Partially apply this function to the arguments.
|
default Function6 |
Function7.curry(Tuple1
Partially apply this function to the arguments.
|
default Function6 |
Function16.curry(Tuple10
Partially apply this function to the arguments.
|
default Function6 |
Function8.curry(Tuple2
Partially apply this function to the arguments.
|
default Function6 |
Function9.curry(Tuple3
Partially apply this function to the arguments.
|
default Function6 |
Function10.curry(Tuple4
Partially apply this function to the arguments.
|
default Function6 |
Function11.curry(Tuple5
Partially apply this function to the arguments.
|
default Function6 |
Function12.curry(Tuple6
Partially apply this function to the arguments.
|
default Function6 |
Function13.curry(Tuple7
Partially apply this function to the arguments.
|
default Function6 |
Function14.curry(Tuple8
Partially apply this function to the arguments.
|
default Function6 |
Function15.curry(Tuple9
Partially apply this function to the arguments.
|
| Modifier and Type | Method and Description |
|---|---|
<R> R |
Tuple6.map(Function6
Apply this tuple as arguments to a function.
|