| 273 | |
| 274 | String ArrayBase::__ToString() const { return HX_CSTRING("Array"); } |
| 275 | String ArrayBase::toString() |
| 276 | { |
| 277 | // Byte-array (not bool!) |
| 278 | if (IsByteArray()) |
| 279 | { |
| 280 | return String( (const char *) mBase, length); |
| 281 | } |
| 282 | |
| 283 | return HX_CSTRING("[") + __join(HX_CSTRING(",")) + HX_CSTRING("]"); |
| 284 | } |
| 285 | |
| 286 | |
| 287 | void ArrayBase::__SetSizeExact(int inSize) |
nothing calls this directly
no test coverage detected