| 576 | |
| 577 | Dynamic __GetItem(int inIndex) const HXCPP_OVERRIDE { return __get(inIndex); } |
| 578 | Dynamic __SetItem(int inIndex, Dynamic inValue) HXCPP_OVERRIDE |
| 579 | { |
| 580 | ELEM_ &elem = Item(inIndex); |
| 581 | elem = inValue; |
| 582 | if (hx::ContainsPointers<ELEM_>()) { HX_OBJ_WB_GET(this,hx::PointerOf(elem)); } |
| 583 | return inValue; |
| 584 | } |
| 585 | |
| 586 | inline ELEM_ *Pointer() { return (ELEM_ *)mBase; } |
| 587 |
no test coverage detected