3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 19:53:45 +01:00
dft_tools/doc/reference/c++/gf/gf_assign.rst

40 lines
719 B
ReStructuredText
Raw Normal View History

2013-09-18 15:13:23 +02:00
.. highlight:: c
.. _gf_reg_assign:
Assignment
=========================
**Synopsis** ::
gf & operator=(gf const & X); (1)
template<??? RHS> gf & operator=(RHS const & X); (2)
The container have a quite general assignment operator.
* (1) just make a copy of X into *\*this*.
* (2) **RHS** can be anything that models the :ref:`???` concept
.. warning::
In both cases, if needed, the container is resized.
Hence **assignment invalidates all pointers and views to it**.
Move assign operator
---------------------------
**Synopsis** ::
gf & operator=(gf && X);
Standard move assign operator.
Move the data of X as data of `*this`.