List.Reverse(list as list) as list
返回将列表 list 中的值反向排序得到的列表。
list
通过将 {1..10} 反向排序创建一个列表。
List.Reverse({1..10})
{10, 9, 8, 7, 6, 5, 4, 3, 2, 1}