Array object

The Array object defines a C array in memory

Operation Description
Array call Creates a new instance from the C Array definition
Array length operator Get the size of the Array in memory
Property Description Access Type
Array.dimensions Get the array dimensions readonly table
Array.length Get the Array length readonly number
Array.size Get the Array size in memory readonly number
Array.type Get the internal Array type readonly string
Methods Description Return value
Array:constructor() Array object constructor
Array:get() Get a value from the C Array
Array:set() Set a value into the C Array -