function (table
as table,transform
as function) as list
table
by applying the transform
operation to the rows. If the return type of the transform
function is specified, then the result will be a table with that row type. In all other cases, the result of this function will be a list with an item type of the return type of the transform function.({[A = 1], [A = 2], [A = 3], [A = 4], [A = 5]})
.{1, 2, 3, 4, 5}
({[A = 1], [A = 2], [A = 3], [A = 4], [A = 5])
.{ [ B = "1" ], [ B = "2" ], [ B = "3" ], [ B = "4" ], [ B = "5" ] }