menu
arcane package
documentation
arcane.dart
TIterable<T>
mapList<R> method
mapList<R> method
dark_mode
light_mode
mapList<
R
>
method
List
<
R
>
mapList
<
R
>(
R
f
(
T
)
)
Returns a new
List
with mapped elements.
Implementation
List<R> mapList<R>(R Function(T) f) => map(f).toList();
arcane package
documentation
arcane
TIterable<T>
mapList<R> method
TIterable extension on
Iterable
<
T
>