HeartCollectionQueueList<E> extension
Equivalents for Dart methods, but remain QueueList type when importing 'heart_types.dart'
- on
-
- QueueList<
E>
- QueueList<
Methods
-
filter(
bool test(E element)) → QueueList< E> -
Available on QueueList<
.where equivalentE> , provided by the HeartCollectionQueueList extension -
filterIndexed(
bool test(int index, E element)) → QueueList< E> -
Available on QueueList<
.whereIndexed equivalentE> , provided by the HeartCollectionQueueList extension -
filterNot(
bool test(E element)) → QueueList< E> -
Available on QueueList<
.whereNot equivalentE> , provided by the HeartCollectionQueueList extension -
filterNotIndexed(
bool test(int index, E element)) → QueueList< E> -
Available on QueueList<
.whereNotIndexed equivalentE> , provided by the HeartCollectionQueueList extension -
filterType<
T> () → QueueList< T> -
Available on QueueList<
.whereType equivalent.E> , provided by the HeartCollectionQueueList extension -
flatMap<
T> (List< T> toElements(E element)) → QueueList<T> -
Available on QueueList<
.expand equivalentE> , provided by the HeartCollectionQueueList extension -
flatMapIndexed<
R> (Iterable< R> expand(int index, E element)) → QueueList<R> -
Available on QueueList<
.expandIndexed equivalentE> , provided by the HeartCollectionQueueList extension -
transform<
T> (T toElement(E e)) → QueueList< T> -
Available on QueueList<
.map equivalentE> , provided by the HeartCollectionQueueList extension -
transformIndexed<
R> (R convert(int index, E element)) → QueueList< R> -
Available on QueueList<
.mapIndexed equivalentE> , provided by the HeartCollectionQueueList extension