| 523 | |
| 524 | template<typename T> |
| 525 | inline void unshift(const T& inValue) |
| 526 | { |
| 527 | if (store!=hx::arrayFixed) EnsureStorage(inValue); |
| 528 | base->__unshift(inValue); |
| 529 | } |
| 530 | |
| 531 | inline void reverse() { checkBase(); if (store!=hx::arrayEmpty) base->__reverse(); } |
| 532 |
nothing calls this directly
no test coverage detected