Skip Array
PureSkipArrayReturns the array without the first N elements.
Type: Pure (no side effects)
Category: Fortuna|Array & Collection
Keywords: array & collection
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Array | TArray<int> | — | Array parameter |
| Count | int | — | Count parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | TArray<int> | ReturnValue output |
Example Use Cases
Example 1
Skip the header row when processing data.
Example 2
Implement pagination (skip first page of results).