mirror of
https://github.com/boostorg/utility.git
synced 2025-07-30 12:57:31 +02:00
Fixed the pair_generator documentation. Order of parameters was wrong; reordered
the table to match the corrected order. [SVN r11035]
This commit is contained in:
@ -203,10 +203,10 @@ explicit indirect_iterator_generator::type(const BaseIterator& it)
|
|||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<pre>
|
<pre>
|
||||||
template <class BaseIterator,
|
template <class BaseIterator,
|
||||||
class Value, class Pointer, class Reference,
|
class Value, class Reference, class ConstReference,
|
||||||
class ConstPointer, class ConstReference>
|
class Category, class Pointer, class ConstPointer>
|
||||||
class indirect_iterator_pair_generator
|
struct indirect_iterator_pair_generator;
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef <tt><a href=
|
typedef <tt><a href=
|
||||||
@ -292,13 +292,6 @@ b,c,d,e,f,g,h,
|
|||||||
in particular, the result type of its <tt>operator*()</tt>.<br>
|
in particular, the result type of its <tt>operator*()</tt>.<br>
|
||||||
<b>Default:</b> <tt>Value&</tt>
|
<b>Default:</b> <tt>Value&</tt>
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><tt>Pointer</tt>
|
|
||||||
|
|
||||||
<td>The <tt>pointer</tt> type of the resulting <tt>iterator</tt>, and
|
|
||||||
in particular, the result type of its <tt>operator->()</tt>.<br>
|
|
||||||
<b>Default:</b> <tt>Value*</tt>
|
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><tt>ConstReference</tt>
|
<td><tt>ConstReference</tt>
|
||||||
|
|
||||||
@ -307,6 +300,19 @@ b,c,d,e,f,g,h,
|
|||||||
<tt>operator*()</tt>.<br>
|
<tt>operator*()</tt>.<br>
|
||||||
<b>Default:</b> <tt>const Value&</tt>
|
<b>Default:</b> <tt>const Value&</tt>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td><tt>Category</tt>
|
||||||
|
<td>The <tt>iterator_category</tt> type for the resulting iterator.<br>
|
||||||
|
<b>Default:</b>
|
||||||
|
<tt>std::iterator_traits<BaseIterator>::iterator_category</tt>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td><tt>Pointer</tt>
|
||||||
|
|
||||||
|
<td>The <tt>pointer</tt> type of the resulting <tt>iterator</tt>, and
|
||||||
|
in particular, the result type of its <tt>operator->()</tt>.<br>
|
||||||
|
<b>Default:</b> <tt>Value*</tt>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><tt>ConstPointer</tt>
|
<td><tt>ConstPointer</tt>
|
||||||
|
|
||||||
@ -314,11 +320,6 @@ b,c,d,e,f,g,h,
|
|||||||
and in particular, the result type of its <tt>operator->()</tt>.<br>
|
and in particular, the result type of its <tt>operator->()</tt>.<br>
|
||||||
<b>Default:</b> <tt>const Value*</tt>
|
<b>Default:</b> <tt>const Value*</tt>
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><tt>Category</tt>
|
|
||||||
<td>The <tt>iterator_category</tt> type for the resulting iterator.<br>
|
|
||||||
<b>Default:</b>
|
|
||||||
<tt>std::iterator_traits<BaseIterator>::iterator_category</tt>
|
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<h3>Concept Model</h3>
|
<h3>Concept Model</h3>
|
||||||
|
Reference in New Issue
Block a user