Sprout/source/libs/string/basic_string/swap.rst

48 lines
1.3 KiB
ReStructuredText
Raw Normal View History

.. _sprout-string-basic_string-swap:
###############################################################################
swap
###############################################################################
Interface
========================================
.. sourcecode:: c++
2013-11-04 05:31:03 +00:00
SPROUT_CXX14_CONSTEXPR void swap(basic_string& s) SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(std::swap(std::declval<T&>(), std::declval<T&>())));
Postcondition
========================================
| ``*this`` contains the same sequence of characters that was in s, s contains the same sequence of characters that was in ``*this``.
Throws
========================================
| Nothing unless one of the element-wise swap calls 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.");
}
Complexity
========================================
| linear.
Header
========================================
| ``sprout/string/string.hpp``
| Convenience header: ``sprout/string.hpp``