| 554 | |
| 555 | |
| 556 | inline const void* pure_slice::offset(size_t o) const noexcept { |
| 557 | return (uint8_t*)buf + check(o); |
| 558 | } |
| 559 | |
| 560 | inline size_t pure_slice::offsetOf(const void* ptr NONNULL) const noexcept { |
| 561 | return pointerDiff(check(ptr), buf); |
nothing calls this directly
no outgoing calls
no test coverage detected