| 303 | size_t size; |
| 304 | |
| 305 | constexpr mutable_slice() noexcept :buf(nullptr), size(0) {} |
| 306 | explicit constexpr mutable_slice(pure_slice s) noexcept :buf((void*)s.buf), size(s.size) {} |
| 307 | constexpr mutable_slice(void* b, size_t s) noexcept :buf(b), size(s) {} |
| 308 | constexpr mutable_slice(void* b NONNULL, void* e NONNULL) noexcept :buf(b), |
nothing calls this directly
no test coverage detected