| 254 | void safeSort(DynamicSorterFunc sorter, bool isString); |
| 255 | |
| 256 | inline void __unsafeStringReference(String inString) |
| 257 | { |
| 258 | mBase = (char *)inString.raw_ptr(); |
| 259 | length = inString.length / GetElementSize(); |
| 260 | mAlloc = length; |
| 261 | HX_OBJ_WB_PESSIMISTIC_GET(this); |
| 262 | } |
| 263 | |
| 264 | |
| 265 | virtual hx::ArrayStore getStoreType() const = 0; |
nothing calls this directly
no test coverage detected