mirror of
https://github.com/boostorg/move.git
synced 2025-08-02 05:44:25 +02:00
Sync from upstream.
This commit is contained in:
@@ -5,9 +5,9 @@
|
|||||||
/ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
/ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||||
/]
|
/]
|
||||||
[library Boost.Move
|
[library Boost.Move
|
||||||
[quickbook 1.5]
|
[quickbook 1.7]
|
||||||
[authors [Gaztanaga, Ion]]
|
[authors [Gaztanaga, Ion]]
|
||||||
[copyright 2008-2014 Ion Gaztanaga]
|
[copyright 2008-2024 Ion Gaztanaga]
|
||||||
[id move]
|
[id move]
|
||||||
[dirname move]
|
[dirname move]
|
||||||
[purpose Move semantics]
|
[purpose Move semantics]
|
||||||
@@ -463,7 +463,7 @@ provided with this library. With regular iterator classes,
|
|||||||
|
|
||||||
while (first != last) *result++ = *first++;
|
while (first != last) *result++ = *first++;
|
||||||
|
|
||||||
causes a range [first,last) to be copied into a range starting with result. The same code with
|
causes a range `[first,last)` to be copied into a range starting with result. The same code with
|
||||||
result being a move insert iterator will move insert corresponding elements into the container.
|
result being a move insert iterator will move insert corresponding elements into the container.
|
||||||
This device allows all of the copying algorithms in the library to work in the move insert mode
|
This device allows all of the copying algorithms in the library to work in the move insert mode
|
||||||
instead of the regular overwrite mode. This library offers 3 move insert iterators and their
|
instead of the regular overwrite mode. This library offers 3 move insert iterators and their
|
||||||
|
Reference in New Issue
Block a user