std::experimental::basic_string_view::remove_suffix

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_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)