map
Maps each list element to an expression.
Description
The map
function applies an expression to each element within a list,
returning a list of the same length.
xs: list
A list of values.
capture: field
The name of each list element in the mapping expression.
expression: any
The expression applied to each list element.
Examples
Check a predicate for all members of a list
Reshape a record inside a list
See Also
where