Advance pointer and zero out memory
| 134 | |
| 135 | // Advance pointer and zero out memory |
| 136 | Status Advance(const int64_t length) { return Append(length, 0); } |
| 137 | |
| 138 | // Advance pointer, but don't allocate or zero memory |
| 139 | void UnsafeAdvance(const int64_t length) { size_ += length; } |
no test coverage detected