createStaticallySizedLocalDoubleArray
fun SimpleShasambly.createStaticallySizedLocalDoubleArray(addr: Int, size: Int): StaticallySizedLocalLongArrayStructure(source)
Create a StaticallySizedLocalLongArrayStructure A long 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. LocalLongArrayStructure
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.createStaticallySizedLocalDoubleArray(addr: Int): StaticallySizedLocalLongArrayStructure(source)
Create a StaticallySizedLocalLongArrayStructure A 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. LocalLongArrayStructure
Parameters
addr
the local address to store the array in