| 497 | |
| 498 | |
| 499 | inline constexpr pure_slice::pure_slice(const void* b, size_t s) noexcept |
| 500 | :buf(b), size(s) |
| 501 | { |
| 502 | checkValidSlice(); |
| 503 | } |
| 504 | |
| 505 | |
| 506 | inline void pure_slice::setBuf(const void *b NONNULL) noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected