Skip to content
This repository was archived by the owner on Feb 5, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/List/List.TransformMany.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@ Returns a list whose elements are projected from the input list. The collectionT
The resultTransform projects the shape of the result and has the signature (x as Any, y as Any) => ... where x is the element in list and y is the element obtained by applying the collectionTransform to that element.
# Category
List.Transformation functions
# Examples
Add 1 to each value in the list {1, 2}.
```
List.TransformMany({2, 3}, (value) => {value + 1}, (oldValue, newValue) => oldValue * newValue)
```
> {6, 12}

***