| 82 | hx::Object *__GetRealObject() HXCPP_OVERRIDE { return base?(hx::Object *)base:(hx::Object *)this; } |
| 83 | |
| 84 | inline static VirtualArray __new(int inSize=0,int inReserve=0) |
| 85 | { |
| 86 | VirtualArray result = new VirtualArray_obj(hx::arrayEmpty); |
| 87 | if (inSize>0) |
| 88 | result->__SetSizeExact(inSize); |
| 89 | if (inReserve>0) |
| 90 | result->reserve(inReserve); |
| 91 | return result; |
| 92 | } |
| 93 | |
| 94 | int __Compare(const hx::Object *inRHS) const HXCPP_OVERRIDE; |
| 95 |
no test coverage detected