Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 496 Bytes

ArraySegment.md

File metadata and controls

26 lines (16 loc) · 496 Bytes

ArraySegment

Represents a segment of values.

arraySegment<>

How to create

Array segment isn't a runtime type - variables of the type cannot be created.
Array segment can only be used to:

array<float> arr = [1, 2, 3]
arr.setRange(3, [4, 5, 6])

Related