Defined in header <utility> | ||||
---|---|---|---|---|
| (since C++11) |
Swaps the contents of lhs
and rhs
. Equivalent to lhs.swap(rhs)
.
Parameters
lhs, rhs | - | pairs whose contents to swap |
Return value
(none).
Exceptions
noexcept
specification: noexcept(noexcept(lhs.swap(rhs)))
See also
swaps the values of two objects (function template) |
Please login to continue.