We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The Reader class allows us to transform functions, by composing them.
E.g given two functions, one that maps from T to R and another from R to R1..
Function<T, R> fn; Function<? super R, ? extends R1> fn2;
We can combine them to create a single function that maps from T to R1
Function<T,R1> composed = fn.andThen(fn2)
There was an error while loading. Please reload this page.