The template
HLAfixedArray<DATATYPE, NUMBER>
defines a fixed array of NUMBER elements of type DATATYPE.
The data can be accessed in an usual way.
For example:
+-------------+----------------+-------------+-----------------+-----------+ | Name | Element type | Cardinality | Encoding | Semantics | +-------------+----------------+-------------+-----------------+-----------+ | Coordinates | HLAinteger32BE | 3 | HLAfixedArray | | +-------------+----------------+-------------+-----------------+-----------+ typedef HLAfixedArray<HLAinteger32BE,3> Coordinates; HLAdata<Coordinates> value; (*value)[0] = 100; (*value)[1] = 200;