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