Collection<E> class abstract

Represents a common interface between a stream and a list.

Implementers

Constructors

Collection()
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 Object
no setter

Methods

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

Operators

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