std::experimental::basic_string_view<CharT,Traits>::remove_suffix (3) - Linux Manuals
std::experimental::basic_string_view<CharT,Traits>::remove_suffix: std::experimental::basic_string_view<CharT,Traits>::remove_suffix
NAME
std::experimental::basic_string_view<CharT,Traits>::remove_suffix - std::experimental::basic_string_view<CharT,Traits>::remove_suffix
Synopsis
constexpr void remove_suffix(size_type n); (library fundamentals TS)
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)