| 509 | |
| 510 | template<typename T> |
| 511 | inline void insert(int inPos, const T &inValue) |
| 512 | { |
| 513 | if (store!=hx::arrayFixed) |
| 514 | { |
| 515 | if (inPos>(store==hx::arrayEmpty ? 0 : (int)base->length) ) |
| 516 | EnsureObjectStorage(); |
| 517 | else |
| 518 | EnsureStorage(inValue); |
| 519 | } |
| 520 | |
| 521 | base->__insert(inPos,inValue); |
| 522 | } |
| 523 | |
| 524 | template<typename T> |
| 525 | inline void unshift(const T& inValue) |
nothing calls this directly
no test coverage detected