196 lines
13 KiB
HTML
196 lines
13 KiB
HTML
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|||
|
<title>Chapter 25. Boost.Move</title>
|
|||
|
<link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css">
|
|||
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
|||
|
<link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
|
|||
|
<link rel="up" href="libraries.html" title="Part I. The Boost C++ Libraries (BoostBook Subset)">
|
|||
|
<link rel="prev" href="metaparse/reference.html" title="Reference">
|
|||
|
<link rel="next" href="move/what_is_boost_move.html" title="What is Boost.Move?">
|
|||
|
</head>
|
|||
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|||
|
<table cellpadding="2" width="100%"><tr>
|
|||
|
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../boost.png"></td>
|
|||
|
<td align="center"><a href="../../index.html">Home</a></td>
|
|||
|
<td align="center"><a href="../../libs/libraries.htm">Libraries</a></td>
|
|||
|
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
|
|||
|
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
|
|||
|
<td align="center"><a href="../../more/index.htm">More</a></td>
|
|||
|
</tr></table>
|
|||
|
<hr>
|
|||
|
<div class="spirit-nav">
|
|||
|
<a accesskey="p" href="metaparse/reference.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.html"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="move/what_is_boost_move.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
|
|||
|
</div>
|
|||
|
<div class="chapter">
|
|||
|
<div class="titlepage"><div>
|
|||
|
<div><h2 class="title">
|
|||
|
<a name="move"></a>Chapter 25. Boost.Move</h2></div>
|
|||
|
<div><div class="author"><h3 class="author">
|
|||
|
<span class="firstname">Ion</span> <span class="surname">Gaztanaga</span>
|
|||
|
</h3></div></div>
|
|||
|
<div><p class="copyright">Copyright © 2008-2014 Ion Gaztanaga</p></div>
|
|||
|
<div><div class="legalnotice">
|
|||
|
<a name="move.legal"></a><p>
|
|||
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|||
|
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
|
|||
|
</p>
|
|||
|
</div></div>
|
|||
|
</div></div>
|
|||
|
<div class="toc">
|
|||
|
<p><b>Table of Contents</b></p>
|
|||
|
<dl class="toc">
|
|||
|
<dt><span class="section"><a href="move.html#move.tested_compilers">Tested compilers</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/what_is_boost_move.html">What is Boost.Move?</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/introduction.html">Introduction</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/implementing_movable_classes.html">Implementing copyable
|
|||
|
and movable classes</a></span></dt>
|
|||
|
<dd><dl>
|
|||
|
<dt><span class="section"><a href="move/implementing_movable_classes.html#move.implementing_movable_classes.copyable_and_movable_cpp0x">Copyable
|
|||
|
and movable classes in C++0x</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/implementing_movable_classes.html#move.implementing_movable_classes.copyable_and_movable_cpp03">Copyable
|
|||
|
and movable classes in portable syntax for both C++03 and C++0x compilers</a></span></dt>
|
|||
|
</dl></dd>
|
|||
|
<dt><span class="section"><a href="move/composition_inheritance.html">Composition or inheritance</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/movable_only_classes.html">Movable but Non-Copyable Types</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/move_and_containers.html">Containers and move semantics</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/construct_forwarding.html">Constructor Forwarding</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/move_return.html">Implicit Move when returning a local
|
|||
|
object</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/move_iterator.html">Move iterators</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/move_inserters.html">Move inserters</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/move_algorithms.html">Move algorithms</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/emulation_limitations.html">Emulation limitations</a></span></dt>
|
|||
|
<dd><dl>
|
|||
|
<dt><span class="section"><a href="move/emulation_limitations.html#move.emulation_limitations.emulation_limitations_base">Initializing
|
|||
|
base classes</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/emulation_limitations.html#move.emulation_limitations.template_parameters">Template
|
|||
|
parameters for perfect forwarding</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/emulation_limitations.html#move.emulation_limitations.emulation_limitations_binding">Binding
|
|||
|
of rvalue references to lvalues</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/emulation_limitations.html#move.emulation_limitations.assignment_operator">Assignment
|
|||
|
operator in classes derived from or holding copyable and movable types</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/emulation_limitations.html#move.emulation_limitations.templated_assignment_operator">Templated
|
|||
|
assignment operator in copyable and movable types</a></span></dt>
|
|||
|
</dl></dd>
|
|||
|
<dt><span class="section"><a href="move/how_the_library_works.html">How the library works</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/thanks_to.html">Thanks and credits</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html">Release Notes</a></span></dt>
|
|||
|
<dd><dl>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_76">Boost 1.76
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_75">Boost 1.75
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_73">Boost 1.73
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_71">Boost 1.71
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_70">Boost 1.70
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_69">Boost 1.69
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_67">Boost 1.67
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_66">Boost 1.66
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_65">Boost 1.65
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_64">Boost 1.64
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_62">Boost 1.62
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_61">Boost 1.61
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_60">Boost 1.60
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_59">Boost 1.59
|
|||
|
Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_58_00">Boost
|
|||
|
1.58 Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_57_00">Boost
|
|||
|
1.57 Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_56_00">Boost
|
|||
|
1.56 Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_55_00">Boost
|
|||
|
1.55 Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_54_00">Boost
|
|||
|
1.54 Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_53_00">Boost
|
|||
|
1.53 Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_51_00">Boost
|
|||
|
1.51 Release</a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/release_notes.html#move.release_notes.release_notes_boost_1_49_00">Boost
|
|||
|
1.49 Release</a></span></dt>
|
|||
|
</dl></dd>
|
|||
|
<dt><span class="section"><a href="move/reference.html">Reference</a></span></dt>
|
|||
|
<dd><dl>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.adl_move_swap_hpp">Header <boost/move/adl_move_swap.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.algo.adaptive_merge_hpp">Header <boost/move/algo/adaptive_merge.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.algo.adaptive_sort_hpp">Header <boost/move/algo/adaptive_sort.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.algo.predicate_hpp">Header <boost/move/algo/predicate.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.algo.unique_hpp">Header <boost/move/algo/unique.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.algorithm_hpp">Header <boost/move/algorithm.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.core_hpp">Header <boost/move/core.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.default_delete_hpp">Header <boost/move/default_delete.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.iterator_hpp">Header <boost/move/iterator.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.make_unique_hpp">Header <boost/move/make_unique.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.move_hpp">Header <boost/move/move.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.algo.move_hpp">Header <boost/move/algo/move.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.traits_hpp">Header <boost/move/traits.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.unique_ptr_hpp">Header <boost/move/unique_ptr.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.utility_hpp">Header <boost/move/utility.hpp></a></span></dt>
|
|||
|
<dt><span class="section"><a href="move/reference.html#header.boost.move.utility_core_hpp">Header <boost/move/utility_core.hpp></a></span></dt>
|
|||
|
</dl></dd>
|
|||
|
</dl>
|
|||
|
</div>
|
|||
|
<div class="important"><table border="0" summary="Important">
|
|||
|
<tr>
|
|||
|
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../doc/src/images/important.png"></td>
|
|||
|
<th align="left">Important</th>
|
|||
|
</tr>
|
|||
|
<tr><td align="left" valign="top"><p>
|
|||
|
To be able to use containers of movable-only values in C++03 mode you will
|
|||
|
need to use containers supporting move semantics, like <span class="bold"><strong>Boost.Container</strong></span>
|
|||
|
containers
|
|||
|
</p></td></tr>
|
|||
|
</table></div>
|
|||
|
<div class="section">
|
|||
|
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
|
|||
|
<a name="move.tested_compilers"></a><a class="link" href="move.html#move.tested_compilers" title="Tested compilers">Tested compilers</a>
|
|||
|
</h2></div></div></div>
|
|||
|
<p>
|
|||
|
<span class="bold"><strong>Boost.Move</strong></span> has been tested in the following
|
|||
|
compilers/platforms:
|
|||
|
</p>
|
|||
|
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
|||
|
<li class="listitem">
|
|||
|
Visual C++ >= 7.1.
|
|||
|
</li>
|
|||
|
<li class="listitem">
|
|||
|
GCC >= 4.1.
|
|||
|
</li>
|
|||
|
</ul></div>
|
|||
|
<div class="warning"><table border="0" summary="Warning">
|
|||
|
<tr>
|
|||
|
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="../../doc/src/images/warning.png"></td>
|
|||
|
<th align="left">Warning</th>
|
|||
|
</tr>
|
|||
|
<tr><td align="left" valign="top"><p>
|
|||
|
GCC < 4.3 and MSVC < 9.0 are deprecated and will be removed in the
|
|||
|
next version.
|
|||
|
</p></td></tr>
|
|||
|
</table></div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|||
|
<td align="left"><p><small>Last revised: April 13, 2021 at 16:32:33 GMT</small></p></td>
|
|||
|
<td align="right"><div class="copyright-footer"></div></td>
|
|||
|
</tr></table>
|
|||
|
<hr>
|
|||
|
<div class="spirit-nav">
|
|||
|
<a accesskey="p" href="metaparse/reference.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.html"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="move/what_is_boost_move.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|