| 261 | } |
| 262 | |
| 263 | int ArrayBase::__Compare(const hx::Object *inRHS) const |
| 264 | { |
| 265 | if (inRHS==this) |
| 266 | return 0; |
| 267 | if (inRHS->__GetType()!=vtArray) |
| 268 | return -1; |
| 269 | ArrayCommon *common = (ArrayCommon *)inRHS; |
| 270 | hx::Object *implementation = common->__GetRealObject(); |
| 271 | return implementation<this ? -1 : implementation!=this; |
| 272 | } |
| 273 | |
| 274 | String ArrayBase::__ToString() const { return HX_CSTRING("Array"); } |
| 275 | String ArrayBase::toString() |