|
18011 | 18011 | with \tcode{std::forward<Args>(args)...},
|
18012 | 18012 | then inserts \tcode{t} as if by:
|
18013 | 18013 | \begin{codeblock}
|
18014 |
| -auto it = ranges::upper_bound(c, t, compare); |
18015 |
| -c.insert(it, std::move(t)); |
| 18014 | +auto it = ranges::upper_bound(@\exposid{c}@, t, compare); |
| 18015 | +@\exposid{c}@.insert(it, std::move(t)); |
18016 | 18016 | \end{codeblock}
|
18017 | 18017 |
|
18018 | 18018 | \pnum
|
|
18031 | 18031 | \effects
|
18032 | 18032 | Adds elements to \exposid{c} as if by:
|
18033 | 18033 | \begin{codeblock}
|
18034 |
| -c.insert(c.end(), first, last); |
| 18034 | +@\exposid{c}@.insert(@\exposid{c}@.end(), first, last); |
18035 | 18035 | \end{codeblock}
|
18036 | 18036 | Then, sorts the range of newly inserted elements with respect to \exposid{compare},
|
18037 | 18037 | and merges the resulting sorted range and
|
|
18073 | 18073 | \effects
|
18074 | 18074 | Equivalent to:
|
18075 | 18075 | \begin{codeblock}
|
18076 |
| -ranges::swap(compare, y.compare); |
18077 |
| -ranges::swap(c, y.c); |
| 18076 | +ranges::swap(@\exposid{compare}@, y.@\exposid{compare}@); |
| 18077 | +ranges::swap(@\exposid{c}@, y.@\exposid{c}@); |
18078 | 18078 | \end{codeblock}
|
18079 | 18079 | \end{itemdescr}
|
18080 | 18080 |
|
|
18090 | 18090 |
|
18091 | 18091 | \pnum
|
18092 | 18092 | \returns
|
18093 |
| -\tcode{std::move(c)}. |
| 18093 | +\tcode{std::move(\exposid{c})}. |
18094 | 18094 | \end{itemdescr}
|
18095 | 18095 |
|
18096 | 18096 | \indexlibrarymember{replace}{flat_multiset}%
|
|
18105 | 18105 |
|
18106 | 18106 | \pnum
|
18107 | 18107 | \effects
|
18108 |
| -Equivalent to: \tcode{c = std::move(cont);} |
| 18108 | +Equivalent to: \tcode{\exposid{c} = std::move(cont);} |
18109 | 18109 | \end{itemdescr}
|
18110 | 18110 |
|
18111 | 18111 | \rSec3[flat.multiset.erasure]{Erasure}
|
|
0 commit comments