| 41 | return inObj->splice( Dynamic(a0), Dynamic(a1) ).mPtr; |
| 42 | } |
| 43 | static hx::Object * SLJIT_CALL arraySlice(ArrayAnyImpl *inObj, hx::Object *a0, hx::Object *a1) |
| 44 | { |
| 45 | return inObj->slice( Dynamic(a0), Dynamic(a1) ).mPtr; |
| 46 | } |
| 47 | static hx::Object * SLJIT_CALL arrayPop(ArrayAnyImpl *inObj) |
| 48 | { |
| 49 | return inObj->pop().mPtr; |