AsyncCollection<E> class

Represents a collection backed by a stream.

Inheritance

Constructors

AsyncCollection(Stream<E> value)
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
value Stream<E>
final

Methods

cast<R>() Collection<R>
override
expand<R>(Iterable<R> toElements(E element)) Collection<R>
override
map<R>(R toElement(E e)) Collection<R>
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
skip(int count) Collection<E>
override
skipWhile(bool test(E value)) Collection<E>
override
take(int count) Collection<E>
override
takeWhile(bool test(E value)) Collection<E>
override
toString() String
A string representation of this object.
inherited
where(bool test(E element)) Collection<E>
override
whereType<R>() Collection<R>
override

Operators

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