std::basic_string_view<CharT,Traits>::remove_suffix (3) - Linux Manuals
std::basic_string_view<CharT,Traits>::remove_suffix: std::basic_string_view<CharT,Traits>::remove_suffix
NAME
std::basic_string_view<CharT,Traits>::remove_suffix - std::basic_string_view<CharT,Traits>::remove_suffix
Synopsis
constexpr void remove_suffix(size_type n); (since C++17)
Moves the end of the view back by n characters.
The behavior is undefined if n > size().
Parameters
n - number of characters to remove from the end of the view
Return value
(none)
Complexity
Constant.
Example
// Run this code
Output:
See also
remove_prefix (public member function)