| 674 | Array_obj<ELEM_> *Add(const ELEM_ &inItem) { push(inItem); return this; } |
| 675 | |
| 676 | Array<ELEM_> init(int inIndex, ELEM_ inValue) |
| 677 | { |
| 678 | * (ELEM_ *)(mBase + inIndex*sizeof(ELEM_)) = inValue; |
| 679 | #ifdef HXCPP_GC_GENERATIONAL |
| 680 | if (hx::ContainsPointers<ELEM_>()) |
| 681 | { HX_OBJ_WB_GET(this, hx::PointerOf(inValue)); } |
| 682 | #endif |
| 683 | return this; |
| 684 | } |
| 685 | |
| 686 | |
| 687 | #ifdef HXCPP_GC_GENERATIONAL |
nothing calls this directly
no test coverage detected