List.Repeat(list as list, count as number) as list
返回为原始列表 list 的 count 次重复的列表。
list
count
创建将 { 1, 2 } 重复了 3 次得到的列表。
使用情况
List.Repeat({ 1, 2 }, 3)
输出
{ 1, 2, 1, 2, 1, 2 }