@@ -244,7 +244,7 @@ <h3><a name="multi_index_container">
244
244
For convenience of use, all public methods and types of the first index
245
245
specified are inherited by < code > multi_index_container</ code > . This also includes global
246
246
operators and functions associated with the index (vg. comparison and
247
- < code > swap</ code > .)
247
+ < code > swap</ code > ).
248
248
</ p >
249
249
250
250
< blockquote > < pre >
@@ -532,7 +532,7 @@ <h4><a name="instantiation_types">Instantiation types</a></h4>
532
532
< li > < code > IndexSpecifierList</ code > specifies the indices that the
533
533
< code > multi_index_container</ code > is composed of. It must be a non-empty
534
534
< a href ="../../../../libs/mpl/doc/refmanual/forward-sequence.html ">
535
- < code > MPL Forward Sequence</ code > </ a > (and, preferrably ,
535
+ < code > MPL Forward Sequence</ code > </ a > (and, preferably ,
536
536
an < a href ="../../../../libs/mpl/doc/refmanual/random-access-sequence.html ">
537
537
< code > MPL Random Access Sequence</ code > </ a > ) of index specifiers. For
538
538
syntactic convenience, the
@@ -738,7 +738,7 @@ <h4><a name="constructors">Constructors, copy and assignment</a></h4>
738
738
< code > EmplaceConstructible</ code > into < code > multi_index_container</ code >
739
739
from < code > *first</ code > .
740
740
< code > last</ code > is reachable from < code > first</ code > .< br >
741
- < b > Effects:</ b > Constructs and empty < code > multi_index_container</ code > using the
741
+ < b > Effects:</ b > Constructs an empty < code > multi_index_container</ code > using the
742
742
specified argument list and allocator and fills it with
743
743
the elements in the range [< code > first</ code > ,< code > last</ code > ).
744
744
Insertion of each element may or may not succeed depending
@@ -765,7 +765,7 @@ <h4><a name="constructors">Constructors, copy and assignment</a></h4>
765
765
< code > multi_index_container</ code > .< br >
766
766
< b > Effects:</ b > Constructs a copy of < code > x</ code > , copying its
767
767
elements as well as its internal objects (those specified
768
- in < code > ctor_args_list</ code > and the allocator.) < br >
768
+ in < code > ctor_args_list</ code > and the allocator). < br >
769
769
< b > Postconditions:</ b > < code > *this==x</ code > . The order on every index
770
770
of the < code > multi_index_container</ code > is preserved as well.< br >
771
771
< b > Complexity:</ b > < code > O(x.size()*log(x.size()) + C(x.size()))</ code > .
@@ -777,7 +777,7 @@ <h4><a name="constructors">Constructors, copy and assignment</a></h4>
777
777
< blockquote >
778
778
< b > Effects:</ b > Constructs a < code > multi_index_container</ code > by transferring the
779
779
elements of < code > x</ code > and copying its internal objects (those specified
780
- in < code > ctor_args_list</ code > and the allocator.) < br >
780
+ in < code > ctor_args_list</ code > and the allocator). < br >
781
781
< b > Postconditions:</ b > If < code > x==y</ code > just
782
782
before the movement, < code > *this==y</ code > . The order on every index
783
783
of the < code > multi_index_container</ code > is preserved as well.< br >
@@ -883,7 +883,7 @@ <h4><a name="constructors">Constructors, copy and assignment</a></h4>
883
883
< blockquote >
884
884
< b > Requires:</ b > < code > Value</ code > is < code > CopyInsertable</ code > into
885
885
< code > multi_index_container</ code > .< br >
886
- < b > Effects:</ b > Replaces the elements the < code > multi_index_container</ code >
886
+ < b > Effects:</ b > Replaces the elements of the < code > multi_index_container</ code >
887
887
with copies of the elements of < code > list</ code > , inserted in the specified order.
888
888
Insertion of each element may or may not succeed depending
889
889
on the acceptance by all the indices of the < code > multi_index_container</ code > .< br >
@@ -965,7 +965,7 @@ <h4><a name="projection">Projection operations</a></h4>
965
965
< b > Requires:</ b > < code > 0 <= N < I-1</ code > . < code > IteratorType</ code >
966
966
belongs to < code > iterator_type_list</ code > . < code > it</ code > is a valid
967
967
iterator of some index of < code > *this</ code > (i.e. does not refer to some
968
- other < code > multi_index_container</ code > .) < br >
968
+ other < code > multi_index_container</ code > ). < br >
969
969
< b > Effects:</ b > Returns an < code > nth_index<N> ::type::iterator</ code >
970
970
equivalent to < code > it</ code > .< br >
971
971
< b > Complexity:</ b > Constant.< br >
@@ -995,7 +995,7 @@ <h4><a name="projection">Projection operations</a></h4>
995
995
< code > index<Tag> ::type</ code > is valid. < code > IteratorType</ code >
996
996
belongs to < code > iterator_type_list</ code > . < code > it</ code > is a valid
997
997
iterator of some index of < code > *this</ code > (i.e. does not refer to some
998
- other < code > multi_index_container</ code > .) < br >
998
+ other < code > multi_index_container</ code > ). < br >
999
999
< b > Effects:</ b > Returns an < code > index<Tag> ::type::iterator</ code >
1000
1000
equivalent to < code > it</ code > .< br >
1001
1001
< b > Complexity:</ b > Constant.< br >
@@ -1011,7 +1011,7 @@ <h4><a name="projection">Projection operations</a></h4>
1011
1011
belongs to < code > const_iterator_type_list</ code > or
1012
1012
< code > iterator_type_list</ code > . < code > it</ code > is a valid
1013
1013
(constant or non-constant) iterator of some index of < code > *this</ code >
1014
- (i.e. does not refer to some other < code > multi_index_container</ code > .) < br >
1014
+ (i.e. does not refer to some other < code > multi_index_container</ code > ). < br >
1015
1015
< b > Effects:</ b > Returns an < code > index<Tag> ::type::const_iterator</ code >
1016
1016
iterator equivalent to < code > it</ code > .< br >
1017
1017
< b > Complexity:</ b > Constant.< br >
@@ -1053,7 +1053,7 @@ <h4><a name="serialization">Serialization</a></h4>
1053
1053
1054
1054
< blockquote >
1055
1055
< b > Requires:</ b > < code > Value</ code > is serializable (XML-serializable). Additionally,
1056
- each of the indices of < code > m</ code > can impose another requirements.< br >
1056
+ each of the indices of < code > m</ code > can impose other requirements.< br >
1057
1057
< b > Exception safety:</ b > Strong with respect to < code > m</ code > . If an exception
1058
1058
is thrown, < code > ar</ code > may be left in an inconsistent state.
1059
1059
</ blockquote >
@@ -1063,7 +1063,7 @@ <h4><a name="serialization">Serialization</a></h4>
1063
1063
1064
1064
< blockquote >
1065
1065
< b > Requires:</ b > < code > Value</ code > is serializable (XML-serializable). Additionally,
1066
- each of the indices of < code > m'</ code > can impose another requirements.< br >
1066
+ each of the indices of < code > m'</ code > can impose other requirements.< br >
1067
1067
< b > Exception safety:</ b > Basic. If an exception is thrown, < code > ar</ code > may be
1068
1068
left in an inconsistent state.
1069
1069
</ blockquote >
0 commit comments