ReaderBuilder<ENV, A> class
final
- Available extensions
Constructors
-
ReaderBuilder(Reader<
ENV, A> _f) -
const
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
build(
) → Reader< ENV, A> -
flatMap<
B> (Reader< ENV, B> f(A)) → ReaderBuilder<ENV, B> -
local<
ENV2> (ENV f(ENV2)) → ReaderBuilder< ENV2, A> -
map<
B> (B f(A)) → ReaderBuilder< ENV, B> -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toReaderIO(
) → ReaderIOBuilder< ENV, A> -
Available on ReaderBuilder<
ENV, IO< , provided by the ToReaderIOReaderExtension extensionA> > -
toReaderStream(
) → ReaderStreamBuilder< ENV, A> -
Available on ReaderBuilder<
ENV, Stream< , provided by the ToReaderStreamReaderExtension extensionA> > -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
ask<
ENV> () → ReaderBuilder< ENV, ENV> -
asks<
ENV, ENV2> (ENV2 f(ENV)) → ReaderBuilder< ENV, ENV2> -
sequenceArray<
ENV, A> (Iterable< Reader< arr) → ReaderBuilder<ENV, A> >ENV, Iterable< A> >