Modifier and Type | Method and Description |
---|---|
default <F> Joinable<D,F> |
add(Joinable<R,F> next)
Send a result of the first function to the next one.
|
R |
apply(D d)
Applies this function to the given argument.
|
static <D,R> Joinable<D,R> |
of(Function<D,R> fce)
Create a joinable function
|
@Nullable default <F> Joinable<D,F> add(@Nonnull Joinable<R,F> next)
F
- A final result typenext
- Next functionnull
than the final result is null
too.Copyright 2019-2022, Pavel Ponec