CORBA
string
and wstring
can be bounded
by providing a number argument:
string<10>
defines a string type of
maximum length 10.sequence
is a dynamic-length linear container
(like Java Vector
) whose maximum length and element
type can be specified in angle brackets (unlike in Java).
sequence<Factory>
defines a sequence
of factories.sequence<Factory,10>
only 10
factories allowed.fixed
- a fixed-point decimal value with no more
than 31 significant digits.
fixed<5,2>
has a precision of 5 and
scale of 2. e.g., 999.999 of 21