functions/arrays/map library

Functions

map(List list, dynamic iteratee(dynamic element, int index, List list)) List
Creates an list of values by running each element of list thru iteratee. The iteratee is invoked with three arguments: (value, index, list).