| 555 | } |
| 556 | |
| 557 | FMT_CONSTEXPR void remove_prefix(size_t n) noexcept { |
| 558 | data_ += n; |
| 559 | size_ -= n; |
| 560 | } |
| 561 | |
| 562 | FMT_CONSTEXPR auto starts_with(basic_string_view sv) const noexcept -> bool { |
| 563 | return size_ >= sv.size_ && detail::compare(data_, sv.data_, sv.size_) == 0; |
nothing calls this directly
no outgoing calls
no test coverage detected