| 347 | |
| 348 | inline size_t size() const { checkBase(); return store==hx::arrayEmpty ? 0 : base->length; } |
| 349 | inline int __length() const HXCPP_OVERRIDE { checkBase(); return store==hx::arrayEmpty ? 0 : (int)base->length; } |
| 350 | |
| 351 | String ItemString(int inI) { checkBase(); return store==hx::arrayEmpty ? null() : base->ItemString(inI); } |
| 352 |
nothing calls this directly
no test coverage detected