See: Description
| Interface | Description |
|---|---|
| Consumer<T> |
Implementations accept a given value and perform work on the argument.
|
| Function<T,R> |
Implementations of this class perform work on the given parameter and return a result of an optionally different
type.
|
| Predicate<T> |
Determines if the input object matches some criteria.
|
| Supplier<T> |
Implementations of this class supply the caller with an object.
|
| Class | Description |
|---|---|
| Fn |
Alias for Functions
|
| Functions |
Helper methods to provide syntax sugar for working with functional components in Reactor.
|
| Predicates | |
| Suppliers |
Helper class for working tying
Suppliers to Iterables and other types of
collections. |