Exemplo n.º 1
0
 public static Object UNSAFE_STRUCT_SET( bstruct o, int i, Object v )
 {
     o.values[i]= v;
     return unspecified._unspecified;
 }
Exemplo n.º 2
0
 public static Object UNSAFE_STRUCT_REF( bstruct o, int i )
 {
     return o.values[i];
 }
Exemplo n.º 3
0
 public static Object STRUCT_KEY_SET( bstruct o, Object v )
 {
     o.key= v;
     return unspecified._unspecified;
 }
Exemplo n.º 4
0
 public static int STRUCT_LENGTH( bstruct o )
 {
     return o.values.Length;
 }
Exemplo n.º 5
0
 public static Object STRUCT_KEY( bstruct  o )
 {
     return o.key;
 }