createStaticallySizedLocalShortArray
fun SimpleShasambly.createStaticallySizedLocalShortArray(addr: Int, size: Int): StaticallySizedLocalShortArrayStructure(source)
Create a StaticallySizedLocalShortArrayStructure A short 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. LocalShortArrayStructure
Parameters
addr
the local address to store the array in
size
the size of the created array (must be at least 2 for this type of array!!!)
fun SimpleShasambly.createStaticallySizedLocalShortArray(addr: Int): StaticallySizedLocalShortArrayStructure(source)
Create a StaticallySizedLocalShortArrayStructure A short 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. LocalShortArrayStructure
Parameters
addr
the local address to store the array in