std::string_view interoperability:
| 189 | #ifdef SLICE_SUPPORTS_STRING_VIEW |
| 190 | // std::string_view interoperability: |
| 191 | constexpr pure_slice(string_view str) noexcept :pure_slice(str.data(), str.length()) {} |
| 192 | operator string_view() const noexcept STEPOVER {return string_view((const char*)buf, size);} |
| 193 | #endif |
| 194 |