typedef char VectorChar[5]; typedef octet VectorOctet[5]; struct S0 { char c[5]; octet o[5]; }; typedef short Vector[10]; typedef Vector Matrix[10]; typedef Vector VB; typedef VB MB[10]; typedef short arr[1][2]; typedef sequence arrseq; struct S1 { long x; char b[ 3 ]; long c[ 5 ][ 4 ]; string s[6]; }; typedef S1 S1_arr[ 3 ][ 4 ]; // Note: long_arr is an array of fixed length data typedef long long_arr[ 10 ]; interface foo; typedef foo foo_arr[6]; // Note: SSx is an array of variable data typedef string SSx[ 5 ][ 4 ]; struct S2 { long x; SSx ss; }; struct S3 { long a[1]; long b[1][2]; long c[1][2][3]; }; typedef sequence S1_seq; interface foo { SSx bar( in SSx x, inout SSx y, out SSx z, out long_arr w ); long_arr baz(); };