Interface | Description |
---|---|
Action<T> |
A generic type for an object that does some work with a thing.
|
BiAction<T,U> |
A generic type for an object that does some work with 2 input things.
|
BiFunction<I1,I2,O> | |
Factory<T> |
An object that creates another.
|
Function<I,O> |
A single argument function.
|
NoArgAction |
An action that takes no arguments.
|
Predicate<T> |
A function that returns
true or false for a value. |
Class | Description |
---|---|
Pair<L,R> |
A generic pair implementation that can be used to cumulatively aggregate a data structure during a promise pipeline.
|