Returns a new list of values computed from this list.
function (
list
as list,transform
as function) as list
Returns a new list of values by applying the transform function transform
to the list, list
.
List.Transformation functions
Add 1 to each value in the list {1, 2}.
List.Transform({1, 2}, each _ + 1)
{2, 3}