Represents a segment of values.
arraySegment<>
Array segment isn't a runtime type - variables of the type cannot be created.
Array segment can only be used to:
- create arrays
- as argument in functions setRange<>(array<>,float,arraySegment<>)
array<float> arr = [1, 2, 3]
arr.setRange(3, [4, 5, 6])