Next: C++ Struct, Previous: C++ String, Up: C++ mappings
GenoM IDL arrays map directly to C++ arrays. All array indices run from 0 to size-1.
size-1
For instance, the following IDL:
typedef long array[4][16];
would map into
typedef int32_t array[4][16];