Releases and clears; same as assigning `nullslice`.
| 373 | |
| 374 | /// Releases and clears; same as assigning `nullslice`. |
| 375 | void reset() noexcept {release(); assignFrom(nullslice);} |
| 376 | /// Resets to an uninitialized block of the given size. |
| 377 | void reset(size_t sz) {*this = alloc_slice(sz);} |
| 378 | /// Changes the size of the block by re-allocating. This changes `buf`! |
nothing calls this directly
no test coverage detected