| 421 | |
| 422 | template<typename T> |
| 423 | inline VirtualArray_obj *Add(const T &inVal) |
| 424 | { |
| 425 | if (store!=hx::arrayFixed) EnsureStorage(inVal); |
| 426 | base->__push(Dynamic(inVal)); |
| 427 | return this; |
| 428 | } |
| 429 | |
| 430 | inline Dynamic pop() { checkBase(); return store==hx::arrayEmpty ? null() : base->__pop(); } |
| 431 |
nothing calls this directly
no test coverage detected