array library

Extension Types

Arr
A fixed-size array, denoted as T; N in Rust.

Functions

range(int start, int end, {bool sInc = true, bool eInc = false}) Arr<int>
An array of ints in the range start..end contains all values with start <= x < end. The edge conditions can be changes with sInc and eInc. sInc is whether the start is inclusive and eInc is whether the end is inclusive.