StaticallySizedLocalIntArrayStructure
class StaticallySizedLocalIntArrayStructure(val shasambly: SimpleShasambly, val address: Int, val size: Int = -1)(source)
A local int array that does not store it's size. If you are using it you have to store its size in some other way. It's advised to use arrays that store their size instead e.g. LocalIntArrayStructure
See also
Properties
Functions
Link copied to clipboard
Get an element of the array. The index is the first integer from the stack
Get an element of the array. The index is given as argument
Link copied to clipboard
Store an element into the array. The index is the first integer on the stack. The element value is the int below it
Store an element into the array. The index is given as argument. The element value is the top int on the stack.
Store an element into the array. Both index and value are given as arguments