std::experimental::basic_string_view::remove_prefix

From cppreference.com
 
 
Experimental libraries
Experimental standard libraries
(library fundamentals TS)
(library fundamentals TS)
(library fundamentals TS)
Polymorphic allocator library (library fundamentals TS)
Filesystem library (filesystem TS)
 
 
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)