Class Reader<A,B>
- java.lang.Object
-
- io.streamthoughts.azkarra.api.monad.Reader<A,B>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description B
apply(A store)
<BB> Reader<A,BB>
flatMap(Function<? super B,Reader<A,? extends BB>> f)
<BB> Reader<A,BB>
map(Function<? super B,? extends BB> f)
static <S,A>
Reader<S,A>of(Function<S,A> function)
-