std::experimental::basic_string_view::remove_prefix
From cppreference.com
< cpp | experimental | basic string view
constexpr void remove_prefix(size_type n);
|
(library fundamentals TS) | |
Moves the start of the view forward 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 start of the view |
[edit] Return value
(none)
[edit] Complexity
Constant.
[edit] See also
Removes characters from the end of the view (public member function) |
|
Clears the view (public member function) |