monkey:monkey.types.Array<T>.Slice

Method Slice:T[]( from:Int )
Method Slice:T[]( from:Int,term:Int )

Extracts a subarray from the array.

Returns an array consisting of all elements from from until (but not including) tail, or until the end of the string if tail is not specified.

If either from or tail is negative, it represents an offset from the end of the array.

Parameters
from from The starting index.
tail tail The ending index.