std::experimental::swap(std::experimental::propagate_const)
From cppreference.com
< cpp | experimental | propagate const
| template< class T > constexpr void swap( std::experimental::propagate_const<T>& lhs, |
(library fundamentals TS v2) | |
Specializes the swap algorithm for std::experimental::propagate_const. Swaps the pointers of lhs and rhs. Equivalent to lhs.swap(rhs).
Contents |
[edit] Parameters
| lhs, rhs | - | propagate_consts whose contents to swap
|
[edit] Return value
(none)
[edit] Exceptions
noexcept specification:
noexcept(noexcept(lhs.swap(rhs)))
[edit] Complexity
Constant
[edit] See also
| swaps the values of two objects (function template) | |
| swaps the wrapped pointer (public member function) |