Lines Matching full:movable
1097 <h3 id="Copyable_Movable_Types">Copyable and Movable Types</h3>
1114 <p>A movable type is one that can be initialized and assigned
1115 from temporaries (all copyable types are therefore movable).
1116 <code>std::unique_ptr<int></code> is an example of a movable but not
1125 <p>Objects of copyable and movable types can be passed and returned by value,
1185 other code, and to document that your class is copyable and/or cheaply movable
1210 <pre class="code">// MyClass is neither copyable nor movable.
2155 types that are movable but not copyable, which can be
2179 Movable Types</a>) and, in conjunction with <code><a href="http://en.cppreference.com/w/cpp/utility/forward">std::forward</a></code>,