Standard LibraryFunctionsmapOn this pagemap map(Object container, Object func) -> Object Transforms a container into a new container. Parameters container: The source container. func: The transformation function. Returns A new container of transformed values. Example map([1, 2, 3], fun(x) { x * 2 })//-> [2, 4, 6]