| 584 | } |
| 585 | |
| 586 | inline slice pure_slice::operator()(size_t off, size_t nBytes) const noexcept { |
| 587 | assert_precondition(off + nBytes <= size); |
| 588 | return slice(offset(off), nBytes); |
| 589 | } |
| 590 | |
| 591 | |
| 592 | inline bool pure_slice::toCString(char *str, size_t bufSize) const noexcept { |