Skip to main content
Version: v0.17.0

ArraySkip

Alias:ArraySkip, Skip

Output:Array of T

Skip the first n elements of an array or entity stream

ParameterTypeRequiredPositionSummary
Array
In
array<T>✔1The array to skip elements from
Countint✔2The 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]