|
1461 | 1461 | \pnum |
1462 | 1462 | \recommended |
1463 | 1463 | If \tcode{R} models \tcode{ranges::\libconcept{approximately_sized_range}} and |
1464 | | -\tcode{ranges::distance(\linebreak{}rg) <= ranges::reserve_hint(rg)} is \tcode{true}, |
| 1464 | +\tcode{ranges::distance(rg) <= ranges::reserve_hint(rg)} is \tcode{true}, |
1465 | 1465 | an implementation should not perform more than a single reallocation. |
1466 | 1466 |
|
1467 | 1467 | \pnum |
|
1836 | 1836 | \pnum |
1837 | 1837 | \recommended |
1838 | 1838 | If \tcode{R} models \tcode{ranges::\libconcept{approximately_sized_range}} and |
1839 | | -\tcode{ranges::distance(\linebreak{}rg) <= ranges::reserve_hint(rg)} is \tcode{true}, |
| 1839 | +\tcode{ranges::distance(rg) <= ranges::reserve_hint(rg)} is \tcode{true}, |
1840 | 1840 | an implementation should not perform any reallocation. |
1841 | 1841 | \end{itemdescr} |
1842 | 1842 |
|
|
2453 | 2453 | \item |
2454 | 2454 | If \tcode{!\exposid{alloc_}} is \tcode{true} or |
2455 | 2455 | \tcode{\exposid{ator-traits}::propagate_on_container_move_assignment::value} |
2456 | | -is \tcode{true}, \linebreak |
| 2456 | +is \tcode{true}, |
2457 | 2457 | move assigns \tcode{nh.\exposid{alloc_}} to \exposid{alloc_}. |
2458 | 2458 | \item |
2459 | 2459 | Assigns |
|
7473 | 7473 | \pnum |
7474 | 7474 | \expects |
7475 | 7475 | \tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list} |
7476 | | -from \tcode{std::forward<Args>(\linebreak args)...}. |
| 7476 | +from \tcode{std::forward<Args>(args)...}. |
7477 | 7477 | \tcode{position} is \tcode{before_begin()} or is a dereferenceable |
7478 | 7478 | iterator in the range \range{begin()}{end()}. |
7479 | 7479 |
|
7480 | 7480 | \pnum |
7481 | 7481 | \effects |
7482 | 7482 | Inserts an object of type \tcode{value_type} direct-non-list-initialized with |
7483 | | -\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}. |
| 7483 | +\tcode{std::forward<Args>(args)...} after \tcode{position}. |
7484 | 7484 |
|
7485 | 7485 | \pnum |
7486 | 7486 | \returns |
|
10719 | 10719 | \pnum |
10720 | 10720 | The expression |
10721 | 10721 | \tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true} |
10722 | | -if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference} |
| 10722 | +if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference} |
10723 | 10723 | for some type \tcode{Alloc} and |
10724 | 10724 | \tcode{vector<bool, Alloc>} is not a program-defined specialization. |
10725 | 10725 | \end{itemdescr} |
|
12116 | 12116 | Otherwise, let \tcode{r} be \tcode{equal_range(k)}. |
12117 | 12117 | Constructs an object \tcode{u} of type \tcode{value_type} with |
12118 | 12118 | \tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)), |
12119 | | -forward_as_tuple(std::forward<Args>(args)...)}.\linebreak |
| 12119 | +forward_as_tuple(std::forward<Args>(args)...)}. |
12120 | 12120 | If \tcode{equal_range(u.first) == r} is \tcode{false}, |
12121 | 12121 | the behavior is undefined. |
12122 | 12122 | Inserts \tcode{u} into \tcode{*this}. |
|
17809 | 17809 | \pnum |
17810 | 17810 | \effects |
17811 | 17811 | Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>} |
17812 | | -with \tcode{std::forward<Args>(\linebreak args)...}; |
| 17812 | +with \tcode{std::forward<Args>(args)...}; |
17813 | 17813 | if the map already contains an element |
17814 | 17814 | whose key is equivalent to \tcode{t.first}, |
17815 | 17815 | \tcode{*this} is unchanged. |
|
18081 | 18081 | \effects |
18082 | 18082 | If the map already contains an element \tcode{e} |
18083 | 18083 | whose key is equivalent to \tcode{k}, |
18084 | | -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 18084 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
18085 | 18085 | Otherwise, equivalent to |
18086 | 18086 | \begin{codeblock} |
18087 | 18087 | try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj)) |
|
18136 | 18136 | \effects |
18137 | 18137 | If the map already contains an element \tcode{e} |
18138 | 18138 | whose key is equivalent to \tcode{k}, |
18139 | | -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 18139 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
18140 | 18140 | Otherwise, equivalent to |
18141 | 18141 | \begin{codeblock} |
18142 | 18142 | try_emplace(std::forward<K>(k), std::forward<M>(obj)) |
@@ -18766,14 +18766,14 @@ |
18766 | 18766 | \pnum |
18767 | 18767 | \effects |
18768 | 18768 | Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and |
18769 | | -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively, |
| 18769 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively, |
18770 | 18770 | except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed |
18771 | 18771 | with uses-allocator construction\iref{allocator.uses.construction}. |
18772 | 18772 |
|
18773 | 18773 | \pnum |
18774 | 18774 | \complexity |
18775 | 18775 | Same as \tcode{flat_multimap(key_cont, mapped_cont)} and |
18776 | | -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively. |
| 18776 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively. |
18777 | 18777 | \end{itemdescr} |
18778 | 18778 |
|
18779 | 18779 | \indexlibraryctor{flat_multimap}% |
|
23464 | 23464 | \item |
23465 | 23465 | If \exposid{rank_} is greater than one, |
23466 | 23466 | then the product of |
23467 | | -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and |
| 23467 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and |
23468 | 23468 | all values \tcode{ext.extent($k$)} |
23469 | 23469 | with $k$ in the range of \range{1}{\exposid{rank_}} |
23470 | 23470 | is representable as a value of type \tcode{index_type}. |
|
23543 | 23543 | \item |
23544 | 23544 | If \exposid{rank_} is greater than \tcode{1} and |
23545 | 23545 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
23546 | | -then \tcode{other.\linebreak stride(1)} equals |
| 23546 | +then \tcode{other.stride(1)} equals |
23547 | 23547 | \begin{codeblock} |
23548 | 23548 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
23549 | 23549 | extents_type::@\exposid{index-cast}@(other.extents().extent(0))) |
|
23618 | 23618 | \item |
23619 | 23619 | If \exposid{rank_} is greater than 1 and |
23620 | 23620 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
23621 | | -then \tcode{other.\linebreak stride(1)} equals |
| 23621 | +then \tcode{other.stride(1)} equals |
23622 | 23622 | \begin{codeblock} |
23623 | 23623 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
23624 | 23624 | extents_type::@\exposid{index-cast}@(other.extent(0))) |
|
24018 | 24018 | if \exposid{static-padding-stride} is not \tcode{dynamic_extent}. |
24019 | 24019 | \begin{note} |
24020 | 24020 | Using \tcode{extents<index_type, \exposid{static-padding-stride}>} |
24021 | | -instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2} |
| 24021 | +instead of \tcode{index_type} as the type of \exposid{stride-rm2} |
24022 | 24022 | would achieve this. |
24023 | 24023 | \end{note} |
24024 | 24024 | \end{itemdescr} |
@@ -24101,13 +24101,13 @@ |
24101 | 24101 | \item |
24102 | 24102 | If \exposid{rank_} is greater than one, |
24103 | 24103 | then the product of |
24104 | | -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and |
| 24104 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and |
24105 | 24105 | all values \tcode{ext.extent($k$)} |
24106 | 24106 | with $k$ in the range of \range{0}{\exposid{rank_} - 1} |
24107 | 24107 | is representable as a value of type \tcode{index_type}. |
24108 | 24108 | \item |
24109 | 24109 | If \tcode{padding_value} is not equal to \tcode{dynamic_extent}, |
24110 | | -\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}. |
| 24110 | +\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}. |
24111 | 24111 | \end{itemize} |
24112 | 24112 |
|
24113 | 24113 | \pnum |
|
24180 | 24180 | \item |
24181 | 24181 | If \exposid{rank_} is greater than 1 and |
24182 | 24182 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
24183 | | -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 24183 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
24184 | 24184 | \begin{codeblock} |
24185 | 24185 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
24186 | 24186 | extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1))) |
|
24255 | 24255 | \item |
24256 | 24256 | If \exposid{rank_} is greater than 1 and |
24257 | 24257 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
24258 | | -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 24258 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
24259 | 24259 | \begin{codeblock} |
24260 | 24260 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
24261 | 24261 | extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1))) |
|
0 commit comments