| 338 | T popCopy() { return vector.popCopy(); } |
| 339 | |
| 340 | bool growBy(size_t inc) { |
| 341 | size_t oldLength = vector.length(); |
| 342 | if (!vector.growByUninitialized(inc)) |
| 343 | return false; |
| 344 | makeRangeGCSafe(oldLength); |
| 345 | return true; |
| 346 | } |
| 347 | |
| 348 | bool resize(size_t newLength) { |
| 349 | size_t oldLength = vector.length(); |
no test coverage detected