| 27 | return inObj->concat(Dynamic(inValue)).mPtr; |
| 28 | } |
| 29 | static void SLJIT_CALL arraySetSizeExact(ArrayAnyImpl *inObj, int inSize) |
| 30 | { |
| 31 | inObj->__SetSizeExact(inSize); |
| 32 | } |
| 33 | static void SLJIT_CALL arrayResize(ArrayAnyImpl *inObj, int inSize) |
| 34 | { |
| 35 | inObj->resize(inSize); |
nothing calls this directly
no test coverage detected