| 程序包 | 说明 |
|---|---|
| com.iofairy.lambda |
| 限定符和类型 | 接口 | 说明 |
|---|---|---|
interface |
Lambda0 |
A Lambda that accepts 0 argument
|
interface |
Lambda1<T> |
A Lambda that accepts 1 argument
|
interface |
Lambda2<T1,T2> |
A Lambda that accepts 2 arguments
|
interface |
Lambda3<T1,T2,T3> |
A Lambda that accepts 3 arguments
|
interface |
Lambda4<T1,T2,T3,T4> |
A Lambda that accepts 4 arguments
|
interface |
Lambda5<T1,T2,T3,T4,T5> |
A Lambda that accepts 5 arguments
|
interface |
Lambda6<T1,T2,T3,T4,T5,T6> |
A Lambda that accepts 6 arguments
|
interface |
Lambda7<T1,T2,T3,T4,T5,T6,T7> |
A Lambda that accepts 7 arguments
|
interface |
Lambda8<T1,T2,T3,T4,T5,T6,T7,T8> |
A Lambda that accepts 8 arguments
|
interface |
Lambda9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
A Lambda that accepts 9 arguments
|
interface |
LambdaN |
A Lambda not throws exception, it's normal Lambda.
|
interface |
LambdaR<R> |
A Lambda will produce a result.
|
interface |
LambdaRN<R> |
A Lambda will produce a result, and not throws exception.
|
interface |
LambdaRT<R,E extends Throwable> |
A Lambda will produce a result, and will throw exception.
|
interface |
LambdaT<E extends Throwable> |
A Lambda will throw exception.
|
interface |
LambdaV |
A Lambda returns no result, it's void.
|
interface |
LambdaVN |
A Lambda returns no result, and not throws exception.
|
interface |
LambdaVT<E extends Throwable> |
A Lambda returns no result, and will throw exception.
|
interface |
R0<R> |
Represents a function that accepts 0 argument and produces a result
表示一个不接收任何参数,但返回结果的函数 |
interface |
R1<T,R> |
Represents a function that accepts 1 argument and produces a result
表示一个接收 1个参数 并返回结果的函数 |
interface |
R2<T1,T2,R> |
Represents a function that accepts 2 arguments and produces a result
表示一个接收 2个参数 并返回结果的函数 |
interface |
R3<T1,T2,T3,R> |
Represents a function that accepts 3 arguments and produces a result
表示一个接收 3个参数 并返回结果的函数 |
interface |
R4<T1,T2,T3,T4,R> |
Represents a function that accepts 4 arguments and produces a result
表示一个接收 4个参数 并返回结果的函数 |
interface |
R5<T1,T2,T3,T4,T5,R> |
Represents a function that accepts 5 arguments and produces a result
表示一个接收 5个参数 并返回结果的函数 |
interface |
R6<T1,T2,T3,T4,T5,T6,R> |
Represents a function that accepts 6 arguments and produces a result
表示一个接收 6个参数 并返回结果的函数 |
interface |
R7<T1,T2,T3,T4,T5,T6,T7,R> |
Represents a function that accepts 7 arguments and produces a result
表示一个接收 7个参数 并返回结果的函数 |
interface |
R8<T1,T2,T3,T4,T5,T6,T7,T8,R> |
Represents a function that accepts 8 arguments and produces a result
表示一个接收 8个参数 并返回结果的函数 |
interface |
R9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R> |
Represents a function that accepts 9 arguments and produces a result
表示一个接收 9个参数 并返回结果的函数 |
interface |
RT0<R,E extends Throwable> |
Represents a function that accepts 0 argument and produces a result, and will throw exception
表示一个不接收任何参数,但返回结果且抛出异常的函数 |
interface |
RT1<T,R,E extends Throwable> |
Represents a function that accepts 1 argument and produces a result, and will throw exception
表示一个接收 1个参数 并返回结果且抛出异常的函数 |
interface |
RT2<T1,T2,R,E extends Throwable> |
Represents a function that accepts 2 arguments and produces a result, and will throw exception
表示一个接收 2个参数 并返回结果且抛出异常的函数 |
interface |
RT3<T1,T2,T3,R,E extends Throwable> |
Represents a function that accepts 3 arguments and produces a result, and will throw exception
表示一个接收 3个参数 并返回结果且抛出异常的函数 |
interface |
RT4<T1,T2,T3,T4,R,E extends Throwable> |
Represents a function that accepts 4 arguments and produces a result, and will throw exception
表示一个接收 4个参数 并返回结果且抛出异常的函数 |
interface |
RT5<T1,T2,T3,T4,T5,R,E extends Throwable> |
Represents a function that accepts 5 arguments and produces a result, and will throw exception
表示一个接收 5个参数 并返回结果且抛出异常的函数 |
interface |
RT6<T1,T2,T3,T4,T5,T6,R,E extends Throwable> |
Represents a function that accepts 6 arguments and produces a result, and will throw exception
表示一个接收 6个参数 并返回结果且抛出异常的函数 |
interface |
RT7<T1,T2,T3,T4,T5,T6,T7,R,E extends Throwable> |
Represents a function that accepts 7 arguments and produces a result, and will throw exception
表示一个接收 7个参数 并返回结果且抛出异常的函数 |
interface |
RT8<T1,T2,T3,T4,T5,T6,T7,T8,R,E extends Throwable> |
Represents a function that accepts 8 arguments and produces a result, and will throw exception
表示一个接收 8个参数 并返回结果且抛出异常的函数 |
interface |
RT9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R,E extends Throwable> |
Represents a function that accepts 9 arguments and produces a result, and will throw exception
表示一个接收 9个参数 并返回结果且抛出异常的函数 |
interface |
V0 |
Represents a function that accepts 0 argument and returns no result
表示一个不接收参数也不返回任何结果的函数 |
interface |
V1<T> |
Represents a function that accepts 1 argument and returns no result
表示一个接收 1个参数 不返回任何结果的函数 |
interface |
V2<T1,T2> |
Represents a function that accepts 2 arguments and returns no result
表示一个接收 2个参数 不返回任何结果的函数 |
interface |
V3<T1,T2,T3> |
Represents a function that accepts 3 arguments and returns no result
表示一个接收 3个参数 不返回任何结果的函数 |
interface |
V4<T1,T2,T3,T4> |
Represents a function that accepts 4 arguments and returns no result
表示一个接收 4个参数 不返回任何结果的函数 |
interface |
V5<T1,T2,T3,T4,T5> |
Represents a function that accepts 5 arguments and returns no result
表示一个接收 5个参数 不返回任何结果的函数 |
interface |
V6<T1,T2,T3,T4,T5,T6> |
Represents a function that accepts 6 arguments and returns no result
表示一个接收 6个参数 不返回任何结果的函数 |
interface |
V7<T1,T2,T3,T4,T5,T6,T7> |
Represents a function that accepts 7 arguments and returns no result
表示一个接收 7个参数 不返回任何结果的函数 |
interface |
V8<T1,T2,T3,T4,T5,T6,T7,T8> |
Represents a function that accepts 8 arguments and returns no result
表示一个接收 8个参数 不返回任何结果的函数 |
interface |
V9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Represents a function that accepts 9 arguments and returns no result
表示一个接收 9个参数 不返回任何结果的函数 |
interface |
VT0<E extends Throwable> |
Represents a function that accepts 0 argument and returns no result, and will throw exception
表示一个不接收参数也不返回任何结果且抛出异常的函数 |
interface |
VT1<T,E extends Throwable> |
Represents a function that accepts 1 argument and returns no result, and will throw exception
表示一个接收 1个参数 不返回任何结果且抛出异常的函数 |
interface |
VT2<T1,T2,E extends Throwable> |
Represents a function that accepts 2 arguments and returns no result, and will throw exception
表示一个接收 2个参数 不返回任何结果且抛出异常的函数 |
interface |
VT3<T1,T2,T3,E extends Throwable> |
Represents a function that accepts 3 arguments and returns no result, and will throw exception
表示一个接收 3个参数 不返回任何结果且抛出异常的函数 |
interface |
VT4<T1,T2,T3,T4,E extends Throwable> |
Represents a function that accepts 4 arguments and returns no result, and will throw exception
表示一个接收 4个参数 不返回任何结果且抛出异常的函数 |
interface |
VT5<T1,T2,T3,T4,T5,E extends Throwable> |
Represents a function that accepts 5 arguments and returns no result, and will throw exception
表示一个接收 5个参数 不返回任何结果且抛出异常的函数 |
interface |
VT6<T1,T2,T3,T4,T5,T6,E extends Throwable> |
Represents a function that accepts 6 arguments and returns no result, and will throw exception
表示一个接收 6个参数 不返回任何结果且抛出异常的函数 |
interface |
VT7<T1,T2,T3,T4,T5,T6,T7,E extends Throwable> |
Represents a function that accepts 7 arguments and returns no result, and will throw exception
表示一个接收 7个参数 不返回任何结果且抛出异常的函数 |
interface |
VT8<T1,T2,T3,T4,T5,T6,T7,T8,E extends Throwable> |
Represents a function that accepts 8 arguments and returns no result, and will throw exception
表示一个接收 8个参数 不返回任何结果且抛出异常的函数 |
interface |
VT9<T1,T2,T3,T4,T5,T6,T7,T8,T9,E extends Throwable> |
Represents a function that accepts 9 arguments and returns no result, and will throw exception
表示一个接收 9个参数 不返回任何结果且抛出异常的函数 |
Copyright © 2023 io-fairy. All rights reserved.