Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
List.Repeat(list as list, count as number) as list
About
Returns a list that is count
repetitions of the original list, list
.
Example 1
Create a list that has {1, 2} repeated 3 times.
Usage
List.Repeat({1, 2}, 3)
Output
{1, 2, 1, 2, 1, 2}