std::basic_string_view::swap
From cppreference.com
< cpp | string | basic string view
constexpr void swap(basic_string_view& v); |
(since C++17) | |
Exchanges the view with that of v
.
Parameters
v | - | view to swap with |
Return value
(none)
Exceptions
noexcept specification:
noexcept
Complexity
Constant.