| 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 12 streams into one using a
Function12 to produce resulting values.
|
static <T1 |
Seq.zip(Seq
Zip 12 streams into one using a
Function12 to produce resulting values.
|
static <T1 |
Seq.zip(Stream
Zip 12 streams into one using a
Function12 to produce resulting values.
|
| Modifier and Type | Method and Description |
|---|---|
default Function12 |
Function13.curry(T1 v1)
Partially apply this function to the arguments.
|
default Function12 |
Function14.curry(T1 v1, T2 v2)
Partially apply this function to the arguments.
|
default Function12 |
Function15.curry(T1 v1, T2 v2, T3 v3)
Partially apply this function to the arguments.
|
default Function12 |
Function16.curry(T1 v1, T2 v2, T3 v3, T4 v4)
Partially apply this function to the arguments.
|
default Function12 |
Function13.curry(Tuple1
Partially apply this function to the arguments.
|
default Function12 |
Function14.curry(Tuple2
Partially apply this function to the arguments.
|
default Function12 |
Function15.curry(Tuple3
Partially apply this function to the arguments.
|
default Function12 |
Function16.curry(Tuple4
Partially apply this function to the arguments.
|
| Modifier and Type | Method and Description |
|---|---|
<R> R |
Tuple12.map(Function12
Apply this tuple as arguments to a function.
|