| 273 | } |
| 274 | |
| 275 | void UArray_convertToUCS2(UArray *self) { |
| 276 | UArray *a = UArray_asUCS2(self); |
| 277 | UArray_swapWith_(self, a); |
| 278 | UArray_free(a); |
| 279 | } |
| 280 | |
| 281 | void UArray_convertToUCS4(UArray *self) { |
| 282 | UArray *a = UArray_asUCS4(self); |
no test coverage detected