Unordered: Documentation update.

[SVN r74962]
This commit is contained in:
Daniel James
2011-10-16 10:31:25 +00:00
parent 087962c16e
commit d2a6ad8c72
4 changed files with 161 additions and 71 deletions
+16 -3
View File
@@ -116,16 +116,28 @@ EOL;
</typedef>
<typedef name="pointer">
<type>typename allocator_type::pointer</type>
<description>
<para>
<code>value_type*</code> if
<code>allocator_type::pointer</code> is not defined.
</para>
</description>
</typedef>
<typedef name="const_pointer">
<type>typename allocator_type::const_pointer</type>
<description>
<para>
<code>boost::pointer_to_other&lt;pointer, value_type&gt;::type</code>
if <code>allocator_type::const_pointer</code> is not defined.
</para>
</description>
</typedef>
<typedef name="reference">
<type>typename allocator_type::reference</type>
<type>value_type&amp;</type>
<purpose><simpara>lvalue of <type>value_type</type>.</simpara></purpose>
</typedef>
<typedef name="const_reference">
<type>typename allocator_type::const_reference</type>
<type>value_type const&amp;</type>
<purpose><simpara>const lvalue of <type>value_type</type>.</simpara></purpose>
</typedef>
<typedef name="size_type">
@@ -320,7 +332,8 @@ EOL;
<notes>
<para>
On compilers without rvalue references, this is emulated using
Boost.Move.
Boost.Move. Note that on some compilers the copy assignment
operator may be used in some circumstances.
</para>
</notes>
<requires>