| 57 | template <typename T> void append(const T &t) {heapArray()->append(t);} |
| 58 | |
| 59 | void resize(uint32_t newSize) {heapArray()->resize(newSize);} |
| 60 | void insert(uint32_t where, uint32_t n) {heapArray()->insert(where, n);} |
| 61 | void remove(uint32_t where, uint32_t n) {heapArray()->remove(where, n);} |
| 62 |
nothing calls this directly
no outgoing calls
no test coverage detected