The CORBA Core Spec has separate syntax for Arrays and Sequences. Sequences are variable-length, and may optionally have a bound:<br><br>sequence&lt;long&gt; UnboundLongs;<br>sequence&lt;long, 10&gt; BoundLongs;<br><br>Arrays are fixed-length sequences, defined thusly:<br>
<br>long ExactlyTenLongs[10];<br><br>In omniIDL documentation, I can see that there is no mention of this fixed-length Array type. However, I can see that there is a type kind for arrays: idltype.tk_array. But when I visit an IDL array (e.g. ExactlyTenLongs above) in my back end, the type comes out looking like a bounded sequence, i.e. the type of the corresponding AST node is an instance of class Sequence, it&#39;s self.__kind is tk_sequence, not tk_array, and bound = 10. What gives? Does omniIDL not support the CORBA array construct? <br>
<br>Being able to differentiate between arrays and sequences is useful because you can map IDL arrays to C-style arrays which use the stack, and map IDL sequences to C++-style vectors, which will use the heap. I assume this is the reason why CORBA spec differentiates between the two types.<br>
<br>Thoughts?<br><br>Thanks,<br>Tim<br>