public static Object UNSAFE_STRUCT_SET( bstruct o, int i, Object v ) { o.values[i]= v; return unspecified._unspecified; }
public static Object UNSAFE_STRUCT_REF( bstruct o, int i ) { return o.values[i]; }
public static Object STRUCT_KEY_SET( bstruct o, Object v ) { o.key= v; return unspecified._unspecified; }
public static int STRUCT_LENGTH( bstruct o ) { return o.values.Length; }
public static Object STRUCT_KEY( bstruct o ) { return o.key; }