menu
stepview package
documentation
tools/list.dart
ExtendedIterable<E>
forEachIndexed method
forEachIndexed method
dark_mode
light_mode
forEachIndexed
method
void
forEachIndexed
(
void
f
(
E
e
,
int
i
)
)
Implementation
void forEachIndexed(void Function(E e, int i) f) { var i = 0; forEach((e) => f(e, i++)); }
stepview package
documentation
tools/list
ExtendedIterable<E>
forEachIndexed method
ExtendedIterable extension on
Iterable
<
E
>