mirror of
https://github.com/boostorg/multi_index.git
synced 2025-05-09 23:14:04 +00:00
typos (#32)
This commit is contained in:
parent
1c3ef66798
commit
ffbdc49bf2
@ -111,7 +111,7 @@ Consider the following instantiation of <code>multi_index_container</code>:
|
||||
<span class=keyword>int</span><span class=special>,</span>
|
||||
<span class=identifier>indexed_by</span><span class=special><</span>
|
||||
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=keyword>int</span><span class=special>></span> <span class=special>>,</span>
|
||||
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=keyword>int</span><span class=special>>,</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>greater</span> <span class=special>>,</span>
|
||||
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=keyword>int</span><span class=special>>,</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>greater</span><span class=special><</span><span class=keyword>int</span><span class=special>></span> <span class=special>>,</span>
|
||||
<span class=special>></span>
|
||||
<span class=special>></span> <span class=identifier>indexed_t</span><span class=special>;</span>
|
||||
</pre></blockquote>
|
||||
@ -749,7 +749,7 @@ Examples
|
||||
|
||||
<br>
|
||||
|
||||
<p>Revised January 9th 2020</p>
|
||||
<p>Revised April 18th 2020</p>
|
||||
|
||||
<p>© Copyright 2003-2020 Joaquín M López Muñoz.
|
||||
Distributed under the Boost Software
|
||||
|
@ -1455,7 +1455,7 @@ are instantiations of <code>std::equal_to</code>.
|
||||
<code>CompositeKeyResult</code> must be an instantiation of
|
||||
<code>composite_key_result</code> for some type
|
||||
<code>composite_key<KeyFromValue0,...,KeyFromValuen></code>.
|
||||
<code>std::equal:to<CompositeKeyResult>::operator()</code> is
|
||||
<code>std::equal_to<CompositeKeyResult>::operator()</code> is
|
||||
then equivalent to
|
||||
<code>composite_key_equal_to<Pred0,...,Predn>::operator()</code>, taking
|
||||
<blockquote>
|
||||
@ -1758,7 +1758,7 @@ then equivalent to
|
||||
In addition to the requirements on <code>Comparei</code> imposed by
|
||||
<code>composite_key_compare</code>, each of these types must be
|
||||
<code>DefaultConstructible</code>. <code>std::less<CompositeKeyResult></code>
|
||||
is <code>CopyConstructible</code>, <code>CopyConstructible</code>
|
||||
is <code>DefaultConstructible</code>, <code>CopyConstructible</code>
|
||||
and <code>CopyAssignable</code>.
|
||||
</p>
|
||||
|
||||
@ -1841,7 +1841,7 @@ then equivalent to
|
||||
In addition to the requirements on <code>Comparei</code> imposed by
|
||||
<code>composite_key_compare</code>, each of these types must be
|
||||
<code>DefaultConstructible</code>. <code>std::greater<CompositeKeyResult></code>
|
||||
is <code>CopyConstructible</code>, <code>CopyConstructible</code>
|
||||
is <code>DefaultConstructible</code>, <code>CopyConstructible</code>
|
||||
and <code>CopyAssignable</code>.
|
||||
</p>
|
||||
|
||||
@ -2166,39 +2166,39 @@ resolves to:
|
||||
</li>
|
||||
<li><a href="#const_mem_fun"><code>const_mem_fun<Class,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (Class::*)()const</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
<li><a href="#cv_mem_fun"><code>cv_mem_fun<Class,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (Class::*)()const volatile</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
<li><a href="#cv_mem_fun"><code>cref_mem_fun<Class,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (Class::*)()const&</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
<li><a href="#cv_mem_fun"><code>cvref_mem_fun<Class,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (Class::*)()const volatile&</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
<li><a href="#mem_fun"><code>mem_fun<Class,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (Class::*)()</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
<li><a href="#volatile_mem_fun"><code>volatile_mem_fun<Class,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (Class::*)()volatile</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
<li><a href="#volatile_mem_fun"><code>ref_mem_fun<Class,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (Class::*)()&</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
<li><a href="#volatile_mem_fun"><code>vref_mem_fun<Class,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (Class::*)()volatile&</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
<li><a href="#global_fun"><code>global_fun<Value,Type,Key></code></a>
|
||||
if <code>Key</code> is of type <code>Type (*)(Value)</code>
|
||||
(with ot without <code>noexcept</code>-specification),
|
||||
(with or without <code>noexcept</code>-specification),
|
||||
</li>
|
||||
</ul>
|
||||
and engenders undefined behavior otherwise. When passed two or more arguments,
|
||||
@ -2236,9 +2236,9 @@ Compiler specifics
|
||||
|
||||
<br>
|
||||
|
||||
<p>Revised June 9th 2019</p>
|
||||
<p>Revised April 18th 2020</p>
|
||||
|
||||
<p>© Copyright 2003-2019 Joaquín M López Muñoz.
|
||||
<p>© Copyright 2003-2020 Joaquín M López Muñoz.
|
||||
Distributed under the Boost Software
|
||||
License, Version 1.0. (See accompanying file <a href="../../../../LICENSE_1_0.txt">
|
||||
LICENSE_1_0.txt</a> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">
|
||||
|
@ -30,6 +30,7 @@ Acknowledgements
|
||||
<h2>Contents</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="#boost_1_74">Boost 1.74 release</a></li>
|
||||
<li><a href="#boost_1_73">Boost 1.73 release</a></li>
|
||||
<li><a href="#boost_1_71">Boost 1.71 release</a></li>
|
||||
<li><a href="#boost_1_70">Boost 1.70 release</a></li>
|
||||
@ -62,6 +63,14 @@ Acknowledgements
|
||||
<li><a href="#boost_1_33">Boost 1.33 release</a></li>
|
||||
</ul>
|
||||
|
||||
<h2><a name="boost_1_74">Boost 1.74 release</a></h2>
|
||||
|
||||
<p>
|
||||
<ul>
|
||||
<li>Maintenance work.</li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<h2><a name="boost_1_73">Boost 1.73 release</a></h2>
|
||||
|
||||
<p>
|
||||
@ -657,7 +666,7 @@ Acknowledgements
|
||||
|
||||
<br>
|
||||
|
||||
<p>Revised January 25th 2020</p>
|
||||
<p>Revised April 18th 2020</p>
|
||||
|
||||
<p>© Copyright 2003-2020 Joaquín M López Muñoz.
|
||||
Distributed under the Boost Software
|
||||
|
Loading…
x
Reference in New Issue
Block a user