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<A>>, provided by the ToReaderIOReaderExtension extension

toReaderStream() ReaderStreamBuilder<ENV, A>

Available on ReaderBuilder<ENV, Stream<A>>, provided by the ToReaderStreamReaderExtension extension

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<ENV, A>> arr) ReaderBuilder<ENV, Iterable<A>>