Skip to content

Commit 18cb694

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

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
@@ -15508,7 +15508,7 @@
1550815508
Initializes
1550915509
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1551015510
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
15511-
\tcode{\exposid{compare}} with \tcode{comp};
15511+
\exposid{compare} with \tcode{comp};
1551215512
sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}; and
1551315513
finally erases the duplicate elements as if by:
1551415514
\begin{codeblock}
@@ -15567,7 +15567,7 @@
1556715567
Initializes
1556815568
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1556915569
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
15570-
\tcode{\exposid{compare}} with \tcode{comp}.
15570+
\exposid{compare} with \tcode{comp}.
1557115571

1557215572
\pnum
1557315573
\complexity
@@ -15829,7 +15829,7 @@
1582915829
\begin{itemdescr}
1583015830
\pnum
1583115831
\effects
15832-
Adds elements to \tcode{\exposid{c}} as if by:
15832+
Adds elements to \exposid{c} as if by:
1583315833
\begin{codeblock}
1583415834
for (; first != last; ++first) {
1583515835
value_type value = *first;
@@ -15870,7 +15870,7 @@
1587015870
\begin{itemdescr}
1587115871
\pnum
1587215872
\effects
15873-
Adds elements to \tcode{\exposid{c}} as if by:
15873+
Adds elements to \exposid{c} as if by:
1587415874
\begin{codeblock}
1587515875
for (; first != last; ++first) {
1587615876
value_type value = *first;
@@ -15907,7 +15907,7 @@
1590715907
\begin{itemdescr}
1590815908
\pnum
1590915909
\effects
15910-
Adds elements to \tcode{\exposid{c}} as if by:
15910+
Adds elements to \exposid{c} as if by:
1591115911
\begin{codeblock}
1591215912
for (const auto& e : rg) {
1591315913
@\exposid{c}@.keys.insert(@\exposid{c}@.keys.end(), e.first);
@@ -16178,7 +16178,7 @@
1617816178
\pnum
1617916179
\expects
1618016180
\tcode{key_cont.size() == mapped_cont.size()} is \tcode{true},
16181-
the elements of \tcode{key_cont} are sorted with respect to \tcode{\exposid{compare}}, and
16181+
the elements of \tcode{key_cont} are sorted with respect to \exposid{compare}, and
1618216182
\tcode{key_cont} contains no equal elements.
1618316183

1618416184
\pnum
@@ -16667,7 +16667,7 @@
1666716667
Initializes
1666816668
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1666916669
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
16670-
\tcode{\exposid{compare}} with \tcode{comp};
16670+
\exposid{compare} with \tcode{comp};
1667116671
sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}.
1667216672

1667316673
\pnum
@@ -16718,7 +16718,7 @@
1671816718
Initializes
1671916719
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1672016720
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
16721-
\tcode{\exposid{compare}} with \tcode{comp}.
16721+
\exposid{compare} with \tcode{comp}.
1672216722

1672316723
\pnum
1672416724
\complexity

0 commit comments

Comments
 (0)