|
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 |
|
10742 | 10742 | \pnum |
10743 | 10743 | The expression |
10744 | 10744 | \tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true} |
10745 | | -if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference} |
| 10745 | +if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference} |
10746 | 10746 | for some type \tcode{Alloc} and |
10747 | 10747 | \tcode{vector<bool, Alloc>} is not a program-defined specialization. |
10748 | 10748 | \end{itemdescr} |
|
12124 | 12124 | Otherwise, let \tcode{r} be \tcode{equal_range(k)}. |
12125 | 12125 | Constructs an object \tcode{u} of type \tcode{value_type} with |
12126 | 12126 | \tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)), |
12127 | | -forward_as_tuple(std::forward<Args>(args)...)}.\linebreak |
| 12127 | +forward_as_tuple(std::forward<Args>(args)...)}. |
12128 | 12128 | If \tcode{equal_range(u.first) == r} is \tcode{false}, |
12129 | 12129 | the behavior is undefined. |
12130 | 12130 | Inserts \tcode{u} into \tcode{*this}. |
|
17817 | 17817 | \pnum |
17818 | 17818 | \effects |
17819 | 17819 | Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>} |
17820 | | -with \tcode{std::forward<Args>(\linebreak args)...}; |
| 17820 | +with \tcode{std::forward<Args>(args)...}; |
17821 | 17821 | if the map already contains an element |
17822 | 17822 | whose key is equivalent to \tcode{t.first}, |
17823 | 17823 | \tcode{*this} is unchanged. |
|
18089 | 18089 | \effects |
18090 | 18090 | If the map already contains an element \tcode{e} |
18091 | 18091 | whose key is equivalent to \tcode{k}, |
18092 | | -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 18092 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
18093 | 18093 | Otherwise, equivalent to |
18094 | 18094 | \begin{codeblock} |
18095 | 18095 | try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj)) |
|
18144 | 18144 | \effects |
18145 | 18145 | If the map already contains an element \tcode{e} |
18146 | 18146 | whose key is equivalent to \tcode{k}, |
18147 | | -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 18147 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
18148 | 18148 | Otherwise, equivalent to |
18149 | 18149 | \begin{codeblock} |
18150 | 18150 | try_emplace(std::forward<K>(k), std::forward<M>(obj)) |
@@ -18774,14 +18774,14 @@ |
18774 | 18774 | \pnum |
18775 | 18775 | \effects |
18776 | 18776 | Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and |
18777 | | -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively, |
| 18777 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively, |
18778 | 18778 | except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed |
18779 | 18779 | with uses-allocator construction\iref{allocator.uses.construction}. |
18780 | 18780 |
|
18781 | 18781 | \pnum |
18782 | 18782 | \complexity |
18783 | 18783 | Same as \tcode{flat_multimap(key_cont, mapped_cont)} and |
18784 | | -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively. |
| 18784 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively. |
18785 | 18785 | \end{itemdescr} |
18786 | 18786 |
|
18787 | 18787 | \indexlibraryctor{flat_multimap}% |
|
23454 | 23454 | \item |
23455 | 23455 | If \exposid{rank_} is greater than one, |
23456 | 23456 | then the product of |
23457 | | -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and |
| 23457 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and |
23458 | 23458 | all values \tcode{ext.extent($k$)} |
23459 | 23459 | with $k$ in the range of \range{1}{\exposid{rank_}} |
23460 | 23460 | is representable as a value of type \tcode{index_type}. |
|
23533 | 23533 | \item |
23534 | 23534 | If \exposid{rank_} is greater than \tcode{1} and |
23535 | 23535 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
23536 | | -then \tcode{other.\linebreak stride(1)} equals |
| 23536 | +then \tcode{other.stride(1)} equals |
23537 | 23537 | \begin{codeblock} |
23538 | 23538 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
23539 | 23539 | extents_type::@\exposid{index-cast}@(other.extents().extent(0))) |
|
23608 | 23608 | \item |
23609 | 23609 | If \exposid{rank_} is greater than 1 and |
23610 | 23610 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
23611 | | -then \tcode{other.\linebreak stride(1)} equals |
| 23611 | +then \tcode{other.stride(1)} equals |
23612 | 23612 | \begin{codeblock} |
23613 | 23613 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
23614 | 23614 | extents_type::@\exposid{index-cast}@(other.extent(0))) |
|
24008 | 24008 | if \exposid{static-padding-stride} is not \tcode{dynamic_extent}. |
24009 | 24009 | \begin{note} |
24010 | 24010 | Using \tcode{extents<index_type, \exposid{static-padding-stride}>} |
24011 | | -instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2} |
| 24011 | +instead of \tcode{index_type} as the type of \exposid{stride-rm2} |
24012 | 24012 | would achieve this. |
24013 | 24013 | \end{note} |
24014 | 24014 | \end{itemdescr} |
|
24095 | 24095 | \item |
24096 | 24096 | If \exposid{rank_} is greater than one, |
24097 | 24097 | then the product of |
24098 | | -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and |
| 24098 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and |
24099 | 24099 | all values \tcode{ext.extent($k$)} |
24100 | 24100 | with $k$ in the range of \range{0}{\exposid{rank_} - 1} |
24101 | 24101 | is representable as a value of type \tcode{index_type}. |
|
24174 | 24174 | \item |
24175 | 24175 | If \exposid{rank_} is greater than 1 and |
24176 | 24176 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
24177 | | -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 24177 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
24178 | 24178 | \begin{codeblock} |
24179 | 24179 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
24180 | 24180 | extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1))) |
|
24249 | 24249 | \item |
24250 | 24250 | If \exposid{rank_} is greater than 1 and |
24251 | 24251 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
24252 | | -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 24252 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
24253 | 24253 | \begin{codeblock} |
24254 | 24254 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
24255 | 24255 | extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1))) |
|
0 commit comments