Skip Array

Pure
SkipArray

Returns the array without the first N elements.

Type: Pure (no side effects)
Category: Fortuna|Array & Collection
Keywords: array & collection

Inputs

NameTypeDefaultDescription
ArrayTArray<int>Array parameter
CountintCount parameter

Outputs

NameTypeDescription
ReturnValueTArray<int>ReturnValue output

Example Use Cases

Example 1

Skip the header row when processing data.

Example 2

Implement pagination (skip first page of results).