|
15523 | 15523 | Initializes
|
15524 | 15524 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
15525 | 15525 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
15526 |
| -\tcode{\exposid{compare}} with \tcode{comp}; |
| 15526 | +\exposid{compare} with \tcode{comp}; |
15527 | 15527 | sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}; and
|
15528 | 15528 | finally erases the duplicate elements as if by:
|
15529 | 15529 | \begin{codeblock}
|
|
15582 | 15582 | Initializes
|
15583 | 15583 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
15584 | 15584 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
15585 |
| -\tcode{\exposid{compare}} with \tcode{comp}. |
| 15585 | +\exposid{compare} with \tcode{comp}. |
15586 | 15586 |
|
15587 | 15587 | \pnum
|
15588 | 15588 | \complexity
|
|
15844 | 15844 | \begin{itemdescr}
|
15845 | 15845 | \pnum
|
15846 | 15846 | \effects
|
15847 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15847 | +Adds elements to \exposid{c} as if by: |
15848 | 15848 | \begin{codeblock}
|
15849 | 15849 | for (; first != last; ++first) {
|
15850 | 15850 | value_type value = *first;
|
|
15885 | 15885 | \begin{itemdescr}
|
15886 | 15886 | \pnum
|
15887 | 15887 | \effects
|
15888 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15888 | +Adds elements to \exposid{c} as if by: |
15889 | 15889 | \begin{codeblock}
|
15890 | 15890 | for (; first != last; ++first) {
|
15891 | 15891 | value_type value = *first;
|
|
15922 | 15922 | \begin{itemdescr}
|
15923 | 15923 | \pnum
|
15924 | 15924 | \effects
|
15925 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15925 | +Adds elements to \exposid{c} as if by: |
15926 | 15926 | \begin{codeblock}
|
15927 | 15927 | for (const auto& e : rg) {
|
15928 | 15928 | @\exposid{c}@.keys.insert(@\exposid{c}@.keys.end(), e.first);
|
|
16193 | 16193 | \pnum
|
16194 | 16194 | \expects
|
16195 | 16195 | \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 |
16197 | 16197 | \tcode{key_cont} contains no equal elements.
|
16198 | 16198 |
|
16199 | 16199 | \pnum
|
|
16682 | 16682 | Initializes
|
16683 | 16683 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
16684 | 16684 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
16685 |
| -\tcode{\exposid{compare}} with \tcode{comp}; |
| 16685 | +\exposid{compare} with \tcode{comp}; |
16686 | 16686 | sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}.
|
16687 | 16687 |
|
16688 | 16688 | \pnum
|
|
16733 | 16733 | Initializes
|
16734 | 16734 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
16735 | 16735 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
16736 |
| -\tcode{\exposid{compare}} with \tcode{comp}. |
| 16736 | +\exposid{compare} with \tcode{comp}. |
16737 | 16737 |
|
16738 | 16738 | \pnum
|
16739 | 16739 | \complexity
|
|
0 commit comments