2013-09-04 09:37:01 +00:00
|
|
|
.. _sprout-string-basic_string-swap-global:
|
|
|
|
###############################################################################
|
|
|
|
swap
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
Interface
|
|
|
|
========================================
|
|
|
|
.. sourcecode:: c++
|
|
|
|
|
|
|
|
template<typename T, std::size_t N, typename Traits>
|
2013-11-04 05:31:03 +00:00
|
|
|
inline SPROUT_CXX14_CONSTEXPR void
|
2013-09-04 09:37:01 +00:00
|
|
|
swap(sprout::basic_string<T, N, Traits>& lhs, sprout::basic_string<T, N, Traits>& rhs)
|
|
|
|
SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(lhs.swap(rhs)));
|
|
|
|
|
|
|
|
Effects
|
|
|
|
========================================
|
|
|
|
|
|
|
|
| ``lhs.swap(rhs)``.
|
|
|
|
|
|
|
|
Throws
|
|
|
|
========================================
|
|
|
|
|
|
|
|
| Nothing unless ``lhs.swap(rhs)`` throws an exception.
|
|
|
|
|
|
|
|
Examples
|
|
|
|
========================================
|
|
|
|
.. sourcecode:: c++
|
|
|
|
|
|
|
|
#include <sprout/string.hpp>
|
|
|
|
#include <sprout/assert.hpp>
|
|
|
|
using namespace sprout;
|
|
|
|
|
|
|
|
auto x = string<8>("homuhomu");
|
|
|
|
auto y = string<8>("madocchi");
|
2013-09-13 08:22:10 +00:00
|
|
|
int main() {
|
|
|
|
swap(x, y);
|
|
|
|
SPROUT_ASSERT_MSG(x == "madocchi" && y == "homuhomu", "each element are swapped.");
|
|
|
|
}
|
2013-09-04 09:37:01 +00:00
|
|
|
|
|
|
|
Complexity
|
|
|
|
========================================
|
|
|
|
|
|
|
|
| linear in N.
|
|
|
|
|
|
|
|
Header
|
|
|
|
========================================
|
|
|
|
|
|
|
|
| ``sprout/string/array.hpp``
|
|
|
|
| Convenience header: ``sprout/string.hpp``
|
|
|
|
|