| 413 | |
| 414 | template<typename T> |
| 415 | inline int push(const T &inVal) |
| 416 | { |
| 417 | if (store!=hx::arrayFixed) EnsureStorage(inVal); |
| 418 | return base->__push(Dynamic(inVal)); |
| 419 | } |
| 420 | |
| 421 | |
| 422 | template<typename T> |
nothing calls this directly
no test coverage detected