Skip to content

Commit dfdd704

Browse files
[flat.map][flat.multimap] Simplify \tcode{\exposid{name}}
Co-authored-by: Johel Ernesto Guerrero Peña <[email protected]>
1 parent 077b197 commit dfdd704

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

source/containers.tex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15523,7 +15523,7 @@
1552315523
Initializes
1552415524
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1552515525
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
15526-
\tcode{\exposid{compare}} with \tcode{comp};
15526+
\exposid{compare} with \tcode{comp};
1552715527
sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}; and
1552815528
finally erases the duplicate elements as if by:
1552915529
\begin{codeblock}
@@ -15582,7 +15582,7 @@
1558215582
Initializes
1558315583
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1558415584
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
15585-
\tcode{\exposid{compare}} with \tcode{comp}.
15585+
\exposid{compare} with \tcode{comp}.
1558615586

1558715587
\pnum
1558815588
\complexity
@@ -15844,7 +15844,7 @@
1584415844
\begin{itemdescr}
1584515845
\pnum
1584615846
\effects
15847-
Adds elements to \tcode{\exposid{c}} as if by:
15847+
Adds elements to \exposid{c} as if by:
1584815848
\begin{codeblock}
1584915849
for (; first != last; ++first) {
1585015850
value_type value = *first;
@@ -15885,7 +15885,7 @@
1588515885
\begin{itemdescr}
1588615886
\pnum
1588715887
\effects
15888-
Adds elements to \tcode{\exposid{c}} as if by:
15888+
Adds elements to \exposid{c} as if by:
1588915889
\begin{codeblock}
1589015890
for (; first != last; ++first) {
1589115891
value_type value = *first;
@@ -15922,7 +15922,7 @@
1592215922
\begin{itemdescr}
1592315923
\pnum
1592415924
\effects
15925-
Adds elements to \tcode{\exposid{c}} as if by:
15925+
Adds elements to \exposid{c} as if by:
1592615926
\begin{codeblock}
1592715927
for (const auto& e : rg) {
1592815928
@\exposid{c}@.keys.insert(@\exposid{c}@.keys.end(), e.first);
@@ -16193,7 +16193,7 @@
1619316193
\pnum
1619416194
\expects
1619516195
\tcode{key_cont.size() == mapped_cont.size()} is \tcode{true},
16196-
the elements of \tcode{key_cont} are sorted with respect to \tcode{\exposid{compare}}, and
16196+
the elements of \tcode{key_cont} are sorted with respect to \exposid{compare}, and
1619716197
\tcode{key_cont} contains no equal elements.
1619816198

1619916199
\pnum
@@ -16682,7 +16682,7 @@
1668216682
Initializes
1668316683
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1668416684
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
16685-
\tcode{\exposid{compare}} with \tcode{comp};
16685+
\exposid{compare} with \tcode{comp};
1668616686
sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}.
1668716687

1668816688
\pnum
@@ -16733,7 +16733,7 @@
1673316733
Initializes
1673416734
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1673516735
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
16736-
\tcode{\exposid{compare}} with \tcode{comp}.
16736+
\exposid{compare} with \tcode{comp}.
1673716737

1673816738
\pnum
1673916739
\complexity

0 commit comments

Comments
 (0)