List.Repeat
Zwraca listę zawierającą liczbę powtórzeń oryginalnej listy.
Syntax
List.Repeat(
list as list,
count as number
) as list
Remarks
Zwraca listę zawierającą count
powtórzeń oryginalnej listy list
.
Examples
Example #1
Utwórz listę, na której 3 razy będzie powtórzona lista {1, 2}.
List.Repeat({1, 2}, 3)
Result:
{1, 2, 1, 2, 1, 2}
Category
List.Transformation functions