| 84 | }; |
| 85 | |
| 86 | fl::string_view view(const Span &s) const FL_NOEXCEPT { |
| 87 | if (s.len == 0) |
| 88 | return fl::string_view(); |
| 89 | return fl::string_view(mUrl.c_str() + s.off, s.len); |
| 90 | } |
| 91 | |
| 92 | void zeroOffsets() FL_NOEXCEPT { |
| 93 | mScheme = {0, 0}; |
nothing calls this directly
no test coverage detected