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