pair.hpp
Go to the documentation of this file.
7 /*************************************************************************************************/
12 /*************************************************************************************************/
25 /*************************************************************************************************/
29 /*************************************************************************************************/
68 /*************************************************************************************************/
82 pair(move_from<pair> x) : first(adobe::move(x.source.first)), second(adobe::move(x.source.second)) { }
84 pair& operator=(pair x) { first = adobe::move(x.first); second = adobe::move(x.second); return *this; }
112 /*************************************************************************************************/
|