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}