Pipe class

Constructors

Pipe()

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Methods

buffer<A>(Monoid<A> monoid, int n) → Conveyor<From<A>, A>
chunk<A>(int n) → Conveyor<From<A>, IVector<A>>
consume<I, O>(Function1<I, Conveyor<From<I>, O>> recv, [Function0<Conveyor<From<I>, O>>? fallback]) → Conveyor<From<I>, O>
drop<I>(int n) → Conveyor<From<I>, I>
dropWhile<I>(bool f(I i)) → Conveyor<From<I>, I>
filter<I>(bool f(I i)) → Conveyor<From<I>, I>
halt<I, O>() → Conveyor<From<I>, O>
identity<I>() → Conveyor<From<I>, I>
intersperse<I>(I sep) → Conveyor<From<I>, I>
lift<I, O>(Function1<I, O> f) → Conveyor<From<I>, O>
produce<I, O>(O h, [Conveyor<From<I>, O>? t]) → Conveyor<From<I>, O>
roll<I>(Monoid<I> mi) → Conveyor<From<I>, I>
scan<I, O>(O z, Function2<O, I, O> f) → Conveyor<From<I>, O>
scanWhile<I, O>(O z, Function2<O, I, O> f, Function1<O, bool> p) → Conveyor<From<I>, O>
skipDuplicates<A>([Eq<A>? _eq]) → Conveyor<From<A>, A>
take<I>(int n) → Conveyor<From<I>, I>
takeWhile<I>(bool f(I i)) → Conveyor<From<I>, I>
uniteOption<A>() → Conveyor<From<Option<A>>, A>
window<A>(int n) → Conveyor<From<A>, IVector<A>>
window2<I>() → Conveyor<From<I>, Tuple2<Option<I>, I>>
window2All<I>() → Conveyor<From<I>, Tuple2<I, I>>
windowAll<A>(int n) → Conveyor<From<A>, IVector<A>>