constexpr void remove_prefix(size_type n);
Requires: n <= size().
Effects: Equivalent to: data_Β += n; size_Β -= n;
constexpr void remove_suffix(size_type n);
Effects: Equivalent to: size_Β -= n;
constexpr void swap(basic_string_view& s) noexcept;
Effects: Exchanges the values of *this and s.