ListExt<E> extension
- on
-
- List<
E>
- List<
Properties
- firstOrNull → E?
-
Available on List<
E> , provided by the ListExt extensionno setter - lastOrNull → E?
-
Available on List<
E> , provided by the ListExt extensionno setter
Methods
-
expandIndexed<
R> (Iterable< R> expand(int index, E element)) → Iterable<R> -
firstWhereIndexedOrNull(
bool test(int index, E element)) → E? -
firstWhereOrNull(
bool test(E element)) → E? -
forEachIndexed(
void action(int index, E element)) → void -
forEachIndexedWhile(
bool action(int index, E element)) → void -
forEachWhile(
bool action(E element)) → void -
lastWhereIndexedOrNull(
bool test(int index, E element)) → E? -
lastWhereOrNull(
bool test(E element)) → E? -
mapIndexed<
R> (R convert(int index, E element)) → Iterable< R> -
whereIndexed(
bool test(int index, E element)) → Iterable< E> -
whereNotIndexed(
bool test(int index, E element)) → Iterable< E>