List.TransformList.Transform
構文Syntax
List.Transform(list as list, transform as function) as list
バージョン情報About
変換関数 transform
をリスト list
に適用することによって、値の新しいリストを返します。Returns a new list of values by applying the transform function transform
to the list, list
.
例 1Example 1
1 をリスト {1, 2} 内のそれぞれの値に加算します。Add 1 to each value in the list {1, 2}.
List.Transform({1, 2}, each _ + 1)
22 |
33 |