std::experimental::basic_string_view::remove_suffix
From cppreference.com
< cpp | experimental | basic string view
constexpr void remove_suffix(size_type n);
|
(library fundamentals TS) | |
Moves the end of the view back by n
characters. Using a value for n
greater than size()
results in undefined behavior.
Contents |
[edit] Parameters
n | - | number of characters to remove from the end of the view |
[edit] Return value
(none)
[edit] Complexity
Constant.
[edit] See also
Removes characters from the start of the view (public member function) |
|
Clears the view (public member function) |