List.Repeat

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}