Boost.Range documentation: corrected the Returned Range Category for the uniqued adaptor

[SVN r61654]
This commit is contained in:
Neil Groves
2010-04-28 18:09:41 +00:00
parent e3e1fc43d3
commit 83c89f3038
2 changed files with 3 additions and 2 deletions

View File

@ -89,7 +89,8 @@
<li class="listitem"> <li class="listitem">
<span class="bold"><strong>Returned Range Category:</strong></span> The minimum <span class="bold"><strong>Returned Range Category:</strong></span> The minimum
of the range concept of <code class="computeroutput"><span class="identifier">rng</span></code> of the range concept of <code class="computeroutput"><span class="identifier">rng</span></code>
and <a class="link" href="../../../concepts/forward_range.html" title="Forward Range">Forward Range</a>. and <a class="link" href="../../../concepts/bidirectional_range.html" title="Bidirectional Range">Bidirectional
Range</a>.
</li> </li>
</ul></div> </ul></div>
<div class="section" title="uniqued example"> <div class="section" title="uniqued example">

View File

@ -9,7 +9,7 @@
* [*Precondition:] The `value_type` of the range is comparable with `operator==()`. * [*Precondition:] The `value_type` of the range is comparable with `operator==()`.
* [*Postcondition:] For all adjacent elements `[x,y]` in the returned range, `x==y` is false. * [*Postcondition:] For all adjacent elements `[x,y]` in the returned range, `x==y` is false.
* [*Range Category:] __forward_range__ * [*Range Category:] __forward_range__
* [*Returned Range Category:] The minimum of the range concept of `rng` and __forward_range__. * [*Returned Range Category:] The minimum of the range concept of `rng` and __bidirectional_range__.
[section:uniqued_example uniqued example] [section:uniqued_example uniqued example]
`` ``