|
15526 | 15526 | Initializes
|
15527 | 15527 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
15528 | 15528 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
15529 |
| -\tcode{\exposid{compare}} with \tcode{comp}; |
| 15529 | +\exposid{compare} with \tcode{comp}; |
15530 | 15530 | sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}; and
|
15531 | 15531 | finally erases the duplicate elements as if by:
|
15532 | 15532 | \begin{codeblock}
|
|
15585 | 15585 | Initializes
|
15586 | 15586 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
15587 | 15587 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
15588 |
| -\tcode{\exposid{compare}} with \tcode{comp}. |
| 15588 | +\exposid{compare} with \tcode{comp}. |
15589 | 15589 |
|
15590 | 15590 | \pnum
|
15591 | 15591 | \complexity
|
|
15847 | 15847 | \begin{itemdescr}
|
15848 | 15848 | \pnum
|
15849 | 15849 | \effects
|
15850 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15850 | +Adds elements to \exposid{c} as if by: |
15851 | 15851 | \begin{codeblock}
|
15852 | 15852 | for (; first != last; ++first) {
|
15853 | 15853 | value_type value = *first;
|
|
15888 | 15888 | \begin{itemdescr}
|
15889 | 15889 | \pnum
|
15890 | 15890 | \effects
|
15891 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15891 | +Adds elements to \exposid{c} as if by: |
15892 | 15892 | \begin{codeblock}
|
15893 | 15893 | for (; first != last; ++first) {
|
15894 | 15894 | value_type value = *first;
|
|
15925 | 15925 | \begin{itemdescr}
|
15926 | 15926 | \pnum
|
15927 | 15927 | \effects
|
15928 |
| -Adds elements to \tcode{\exposid{c}} as if by: |
| 15928 | +Adds elements to \exposid{c} as if by: |
15929 | 15929 | \begin{codeblock}
|
15930 | 15930 | for (const auto& e : rg) {
|
15931 | 15931 | @\exposid{c}@.keys.insert(@\exposid{c}@.keys.end(), e.first);
|
|
16196 | 16196 | \pnum
|
16197 | 16197 | \expects
|
16198 | 16198 | \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 |
16200 | 16200 | \tcode{key_cont} contains no equal elements.
|
16201 | 16201 |
|
16202 | 16202 | \pnum
|
|
16685 | 16685 | Initializes
|
16686 | 16686 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
16687 | 16687 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
16688 |
| -\tcode{\exposid{compare}} with \tcode{comp}; |
| 16688 | +\exposid{compare} with \tcode{comp}; |
16689 | 16689 | sorts the range \range{begin()}{end()} with respect to \tcode{value_comp()}.
|
16690 | 16690 |
|
16691 | 16691 | \pnum
|
|
16736 | 16736 | Initializes
|
16737 | 16737 | \tcode{\exposid{c}.keys} with \tcode{std::move(key_cont)},
|
16738 | 16738 | \tcode{\exposid{c}.values} with \tcode{std::move(mapped_cont)}, and
|
16739 |
| -\tcode{\exposid{compare}} with \tcode{comp}. |
| 16739 | +\exposid{compare} with \tcode{comp}. |
16740 | 16740 |
|
16741 | 16741 | \pnum
|
16742 | 16742 | \complexity
|
|
0 commit comments