Returns a list that is count repetitions of the original list.
function (
list
as list,count
as number) as list
Returns a list that is count
repetitions of the original list, list
.
List.Transformation functions
Create a list that has {1, 2} repeated 3 times.
List.Repeat({1, 2}, 3)
{1, 2, 1, 2, 1, 2}