ArraySkip
Alias:ArraySkip
, Skip
Output:Array of T
Skip the first n elements of an array or entity stream
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
Array In | array<T> | ✔ | 1 | The array to skip elements from |
Count | int | ✔ | 2 | The number of elements/entities to skip |
Examples​
Example 1​
SCL​
ArraySkip [1, 2, 3] 2
Expected Output​
[3]
Example 2​
SCL​
Skip In: [1, 2, 3, 4, 5] Count: 3
Expected Output​
[4, 5]