SyncCollection<E> class

Represents a collection backed by a list.

Inheritance

Constructors

SyncCollection(List<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 List<E>
final

Methods

cast<R>() Collection<R>
override
expand<T>(Iterable<T> toElements(E element)) Collection<T>
override
map<T>(T toElement(E e)) Collection<T>
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<T>() Collection<T>
override

Operators

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