|
15508 | 15508 | Initializes
|
15509 | 15509 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
15510 | 15510 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
15511 |
| -\tcode{\exposid{compare}} with \tcode{comp}; |
| 15511 | +\exposid{compare} with \tcode{comp}; |
15512 | 15512 | sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}; and
|
15513 | 15513 | finally erases the duplicate elements as if by:
|
15514 | 15514 | \begin{codeblock}
|
|
15567 | 15567 | Initializes
|
15568 | 15568 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
15569 | 15569 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
15570 |
| -\tcode{\exposid{compare}} with \tcode{comp}. |
| 15570 | +\exposid{compare} with \tcode{comp}. |
15571 | 15571 |
|
15572 | 15572 | \pnum
|
15573 | 15573 | \complexity
|
|
15829 | 15829 | \begin{itemdescr}
|
15830 | 15830 | \pnum
|
15831 | 15831 | \effects
|
15832 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15832 | +Adds elements to \exposid{c} as if by: |
15833 | 15833 | \begin{codeblock}
|
15834 | 15834 | for (; first != last; ++first) {
|
15835 | 15835 | value_type value = *first;
|
|
15870 | 15870 | \begin{itemdescr}
|
15871 | 15871 | \pnum
|
15872 | 15872 | \effects
|
15873 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15873 | +Adds elements to \exposid{c} as if by: |
15874 | 15874 | \begin{codeblock}
|
15875 | 15875 | for (; first != last; ++first) {
|
15876 | 15876 | value_type value = *first;
|
|
15907 | 15907 | \begin{itemdescr}
|
15908 | 15908 | \pnum
|
15909 | 15909 | \effects
|
15910 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15910 | +Adds elements to \exposid{c} as if by: |
15911 | 15911 | \begin{codeblock}
|
15912 | 15912 | for (const auto& e : rg) {
|
15913 | 15913 | @\exposid{c}@.keys.insert(@\exposid{c}@.keys.end(), e.first);
|
|
16178 | 16178 | \pnum
|
16179 | 16179 | \expects
|
16180 | 16180 | \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 |
16182 | 16182 | \tcode{key_cont} contains no equal elements.
|
16183 | 16183 |
|
16184 | 16184 | \pnum
|
|
16667 | 16667 | Initializes
|
16668 | 16668 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
16669 | 16669 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
16670 |
| -\tcode{\exposid{compare}} with \tcode{comp}; |
| 16670 | +\exposid{compare} with \tcode{comp}; |
16671 | 16671 | sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}.
|
16672 | 16672 |
|
16673 | 16673 | \pnum
|
|
16718 | 16718 | Initializes
|
16719 | 16719 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
16720 | 16720 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
16721 |
| -\tcode{\exposid{compare}} with \tcode{comp}. |
| 16721 | +\exposid{compare} with \tcode{comp}. |
16722 | 16722 |
|
16723 | 16723 | \pnum
|
16724 | 16724 | \complexity
|
|
0 commit comments