Skip to content

Commit be83b7f

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

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
@@ -15526,7 +15526,7 @@
1552615526
Initializes
1552715527
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1552815528
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
15529-
\tcode{\exposid{compare}} with \tcode{comp};
15529+
\exposid{compare} with \tcode{comp};
1553015530
sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}; and
1553115531
finally erases the duplicate elements as if by:
1553215532
\begin{codeblock}
@@ -15585,7 +15585,7 @@
1558515585
Initializes
1558615586
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1558715587
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
15588-
\tcode{\exposid{compare}} with \tcode{comp}.
15588+
\exposid{compare} with \tcode{comp}.
1558915589

1559015590
\pnum
1559115591
\complexity
@@ -15847,7 +15847,7 @@
1584715847
\begin{itemdescr}
1584815848
\pnum
1584915849
\effects
15850-
Adds elements to \tcode{\exposid{c}} as if by:
15850+
Adds elements to \exposid{c} as if by:
1585115851
\begin{codeblock}
1585215852
for (; first != last; ++first) {
1585315853
value_type value = *first;
@@ -15888,7 +15888,7 @@
1588815888
\begin{itemdescr}
1588915889
\pnum
1589015890
\effects
15891-
Adds elements to \tcode{\exposid{c}} as if by:
15891+
Adds elements to \exposid{c} as if by:
1589215892
\begin{codeblock}
1589315893
for (; first != last; ++first) {
1589415894
value_type value = *first;
@@ -15925,7 +15925,7 @@
1592515925
\begin{itemdescr}
1592615926
\pnum
1592715927
\effects
15928-
Adds elements to \tcode{\exposid{c}} as if by:
15928+
Adds elements to \exposid{c} as if by:
1592915929
\begin{codeblock}
1593015930
for (const auto& e : rg) {
1593115931
@\exposid{c}@.keys.insert(@\exposid{c}@.keys.end(), e.first);
@@ -16196,7 +16196,7 @@
1619616196
\pnum
1619716197
\expects
1619816198
\tcode{key_cont.size() == mapped_cont.size()} is \tcode{true},
16199-
the elements of \tcode{key_cont} are sorted with respect to \tcode{\exposid{compare}}, and
16199+
the elements of \tcode{key_cont} are sorted with respect to \exposid{compare}, and
1620016200
\tcode{key_cont} contains no equal elements.
1620116201

1620216202
\pnum
@@ -16685,7 +16685,7 @@
1668516685
Initializes
1668616686
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1668716687
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
16688-
\tcode{\exposid{compare}} with \tcode{comp};
16688+
\exposid{compare} with \tcode{comp};
1668916689
sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}.
1669016690

1669116691
\pnum
@@ -16736,7 +16736,7 @@
1673616736
Initializes
1673716737
\tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
1673816738
\tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
16739-
\tcode{\exposid{compare}} with \tcode{comp}.
16739+
\exposid{compare} with \tcode{comp}.
1674016740

1674116741
\pnum
1674216742
\complexity

0 commit comments

Comments
 (0)