2013-07-17 19:24:07 +02:00
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
swap & deep_swap
|
2013-07-17 19:24:07 +02:00
|
|
|
==================================
|
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
There are two possible interpretation of "swapping two arrays" :
|
|
|
|
either use 3 moves like std::swap, i.e. swapping the pointer to the data in memory,
|
|
|
|
or making a deep swap, i.e. really swapping all the elements in memeory.
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
.. _arr_swap:
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
swap
|
2013-07-17 19:24:07 +02:00
|
|
|
--------
|
|
|
|
|
|
|
|
* swap just exchange the (shared) pointer to the data in memory,
|
|
|
|
it does not affect the data them self.
|
|
|
|
This distinction of importance for views in particular.
|
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
* For the regular type, std::swap and swap are equivalent.
|
|
|
|
For the views, std::swap is explicitely deleted, since it is incorrect
|
|
|
|
due to the lack of move constructor for a view.
|
|
|
|
Use `swap` instead.
|
|
|
|
|
2013-07-17 19:24:07 +02:00
|
|
|
* **Example** :
|
|
|
|
|
2014-05-31 19:12:21 +02:00
|
|
|
.. triqs_example:: ./swap_0.cpp
|
2013-08-22 16:55:51 +02:00
|
|
|
.. _arr_deep_swap:
|
|
|
|
|
2013-07-17 19:24:07 +02:00
|
|
|
deep_swap
|
|
|
|
--------------
|
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
.. warning::
|
|
|
|
|
|
|
|
Currently implemented only for triqs::vector and triqs::vector_view.
|
|
|
|
|
|
|
|
|
2013-07-17 19:24:07 +02:00
|
|
|
* deep_swap swaps the data in memory.
|
|
|
|
|
|
|
|
* **Example** (compare with swap) :
|
|
|
|
|
2014-05-31 19:12:21 +02:00
|
|
|
.. triqs_example:: ./swap_1.cpp
|