| 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 | |
| 353 | const char * __CStr() const HXCPP_OVERRIDE { return store==hx::arrayEmpty ? "[]" : store==hx::arrayNull ? "null" : base->__CStr(); } |
| 354 | inline const char *GetBase() const { return base ? base->GetBase() : 0; } |