March 2010
Beginner
760 pages
18h 51m
English
HLA lets you define record constants. In fact, HLA supports both manifest (symbolic) record constants and literal record constants. Record constants are useful as initializers for static record variables. They are also quite useful as compile-time data structures when using the HLA compile-time language (see the HLA reference manual for more details on the HLA compile-time language). This section discusses how to create record constants.
A literal record constant takes the following form:
RecordTypeName:[List_of_comma_separated_constants]
The RecordTypeName is the name of a record data type you've defined in an HLA type section prior to using the constant.
The constant list appearing between the brackets is the data for each ...