forked from boostorg/unordered
Unordered: Documentation update.
[SVN r74962]
This commit is contained in:
+16
-3
@@ -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<pointer, value_type>::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&</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&</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>
|
||||
|
||||
Reference in New Issue
Block a user