mirror of
https://github.com/boostorg/utility.git
synced 2025-05-09 15:04:00 +00:00
fixed Reference and Pointer template paremeter descriptions
[SVN r9155]
This commit is contained in:
parent
89b9f77823
commit
88573d515d
@ -119,21 +119,34 @@ letters in descending order: wroolllhed!
|
|||||||
|
|
||||||
<TR>
|
<TR>
|
||||||
<TD><tt>Value</tt></TD>
|
<TD><tt>Value</tt></TD>
|
||||||
<TD>The value-type of the base iterator and the resulting reverse iterator.<br>
|
|
||||||
|
<TD>The value-type of the base iterator and the resulting reverse
|
||||||
|
iterator.<br>
|
||||||
<b>Default:</b><tt>std::iterator_traits<BidirectionalIterator>::value_type</tt>
|
<b>Default:</b><tt>std::iterator_traits<BidirectionalIterator>::value_type</tt>
|
||||||
</TD>
|
</TD>
|
||||||
|
|
||||||
<TR>
|
<TR>
|
||||||
<TD><tt>Reference</tt></TD>
|
<TD><tt>Reference</tt></TD>
|
||||||
<TD>The corresponding reference type for the <tt>value_type</tt>.<br>
|
|
||||||
<b>Default:</b><tt>std::iterator_traits<BidirectionalIterator>::reference</tt>
|
<TD>The <tt>reference</tt> type for the resulting iterator,
|
||||||
|
and in particular, the result type of <tt>operator*()</tt>
|
||||||
|
Typically the default for this parameter is the appropriate type.<br>
|
||||||
|
<b>Default:</b> If <tt>Value</tt> is supplied, <tt>Value&</tt> is
|
||||||
|
used. Otherwise
|
||||||
|
<tt>std::iterator_traits<BidirectionalIterator>::reference</tt> is used.
|
||||||
</TD>
|
</TD>
|
||||||
|
|
||||||
<TR>
|
<TR>
|
||||||
<TD><tt>Pointer</tt></TD>
|
<TD><tt>Pointer</tt></TD>
|
||||||
<TD>The pointer type for the <tt>value_type</tt>.<br>
|
|
||||||
<b>Default:</b><tt>std::iterator_traits<BidirectionalIterator>::pointer</tt>
|
<TD>The <tt>pointer</tt> type of the resulting iterator, and in
|
||||||
</TD>
|
particular, the result type of <tt>operator->()</tt>. Typically the
|
||||||
|
default for this parameter is the appropriate type.<br>
|
||||||
|
<b>Default:</b> If <tt>Value</tt> was supplied, then <tt>Value*</tt>.
|
||||||
|
Otherwise
|
||||||
|
<tt>std::iterator_traits<BidirectionalIterator>::pointer</tt> is used.</TD>
|
||||||
|
</TR>
|
||||||
|
|
||||||
|
|
||||||
<TR>
|
<TR>
|
||||||
<TD><tt>Category</tt></TD>
|
<TD><tt>Category</tt></TD>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user