HeartCollectionQueueList<E> extension

Equivalents for Dart methods, but remain QueueList type when importing 'heart_types.dart'

on

Methods

filter(bool test(E element)) QueueList<E>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.where equivalent
filterIndexed(bool test(int index, E element)) QueueList<E>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.whereIndexed equivalent
filterNot(bool test(E element)) QueueList<E>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.whereNot equivalent
filterNotIndexed(bool test(int index, E element)) QueueList<E>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.whereNotIndexed equivalent
filterType<T>() QueueList<T>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.whereType equivalent.
flatMap<T>(List<T> toElements(E element)) QueueList<T>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.expand equivalent
flatMapIndexed<R>(Iterable<R> expand(int index, E element)) QueueList<R>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.expandIndexed equivalent
transform<T>(T toElement(E e)) QueueList<T>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.map equivalent
transformIndexed<R>(R convert(int index, E element)) QueueList<R>

Available on QueueList<E>, provided by the HeartCollectionQueueList extension

.mapIndexed equivalent