List.RemoveRange
List.RemoveRange(list as list, index as number, optional count as nullable number) as list
Odebere count
hodnoty v list
počínaje zadanou pozicí index
.
Odeberte 3 hodnoty v seznamu {1, 2, 3, 4, -6, -2, -1, 5} počínaje indexem 4.
Použití
List.RemoveRange({1, 2, 3, 4, -6, -2, -1, 5}, 4, 3)
výstup
{1, 2, 3, 4, 5}