|
1456 | 1456 | \pnum |
1457 | 1457 | \recommended |
1458 | 1458 | If \tcode{R} models \tcode{ranges::\libconcept{approximately_sized_range}} and |
1459 | | -\tcode{ranges::distance(\linebreak{}rg) <= ranges::reserve_hint(rg)} is \tcode{true}, |
| 1459 | +\tcode{ranges::distance(rg) <= ranges::reserve_hint(rg)} is \tcode{true}, |
1460 | 1460 | an implementation should not perform more than a single reallocation. |
1461 | 1461 |
|
1462 | 1462 | \pnum |
|
1828 | 1828 | \pnum |
1829 | 1829 | \recommended |
1830 | 1830 | If \tcode{R} models \tcode{ranges::\libconcept{approximately_sized_range}} and |
1831 | | -\tcode{ranges::distance(\linebreak{}rg) <= ranges::reserve_hint(rg)} is \tcode{true}, |
| 1831 | +\tcode{ranges::distance(rg) <= ranges::reserve_hint(rg)} is \tcode{true}, |
1832 | 1832 | an implementation should not perform any reallocation. |
1833 | 1833 | \end{itemdescr} |
1834 | 1834 |
|
|
2444 | 2444 | Assigns \tcode{nh.ptr_} to \tcode{ptr_}. |
2445 | 2445 | \item |
2446 | 2446 | If \tcode{!alloc\textunderscore} or \tcode{ator_traits::propagate_on_container_move_assignment::value} |
2447 | | -is \tcode{true}, \linebreak |
2448 | | -move assigns \tcode{nh.alloc_} to \tcode{alloc_}. |
| 2447 | +is \tcode{true}, move assigns \tcode{nh.alloc_} to \tcode{alloc_}. |
2449 | 2448 | \item |
2450 | 2449 | Assigns |
2451 | 2450 | \keyword{nullptr} to \tcode{nh.ptr_} and assigns \tcode{nullopt} to |
|
7468 | 7467 | \pnum |
7469 | 7468 | \expects |
7470 | 7469 | \tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list} |
7471 | | -from \tcode{std::forward<Args>(\linebreak args)...}. |
| 7470 | +from \tcode{std::forward<Args>(args)...}. |
7472 | 7471 | \tcode{position} is \tcode{before_begin()} or is a dereferenceable |
7473 | 7472 | iterator in the range \range{begin()}{end()}. |
7474 | 7473 |
|
7475 | 7474 | \pnum |
7476 | 7475 | \effects |
7477 | 7476 | Inserts an object of type \tcode{value_type} direct-non-list-initialized with |
7478 | | -\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}. |
| 7477 | +\tcode{std::forward<Args>(args)...} after \tcode{position}. |
7479 | 7478 |
|
7480 | 7479 | \pnum |
7481 | 7480 | \returns |
|
10634 | 10633 | \pnum |
10635 | 10634 | The expression |
10636 | 10635 | \tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true} |
10637 | | -if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference} |
| 10636 | +if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference} |
10638 | 10637 | for some type \tcode{Alloc} and |
10639 | 10638 | \tcode{vector<bool, Alloc>} is not a program-defined specialization. |
10640 | 10639 | \end{itemdescr} |
|
12025 | 12024 | Otherwise, let \tcode{r} be \tcode{equal_range(k)}. |
12026 | 12025 | Constructs an object \tcode{u} of type \tcode{value_type} with |
12027 | 12026 | \tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)), |
12028 | | -forward_as_tuple(std::forward<Args>(args)...)}.\linebreak |
| 12027 | +forward_as_tuple(std::forward<Args>(args)...)}. |
12029 | 12028 | If \tcode{equal_range(u.first) == r} is \tcode{false}, |
12030 | 12029 | the behavior is undefined. |
12031 | 12030 | Inserts \tcode{u} into \tcode{*this}. |
|
17512 | 17511 | \pnum |
17513 | 17512 | \effects |
17514 | 17513 | Equivalent to \tcode{flat_map(sorted_unique, key_cont, mapped_cont)} and |
17515 | | -\tcode{flat_map(sorted_unique, key_cont, \linebreak{}mapped_cont, comp)}, respectively, |
| 17514 | +\tcode{flat_map(sorted_unique, key_cont, mapped_cont, comp)}, respectively, |
17516 | 17515 | except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed |
17517 | 17516 | with uses-allocator construction\iref{allocator.uses.construction}. |
17518 | 17517 |
|
|
17696 | 17695 | \pnum |
17697 | 17696 | \effects |
17698 | 17697 | Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>} |
17699 | | -with \tcode{std::forward<Args>(\linebreak args)...}; |
| 17698 | +with \tcode{std::forward<Args>(args)...}; |
17700 | 17699 | if the map already contains an element |
17701 | 17700 | whose key is equivalent to \tcode{t.first}, |
17702 | 17701 | \tcode{*this} is unchanged. |
|
17952 | 17951 | \effects |
17953 | 17952 | If the map already contains an element \tcode{e} |
17954 | 17953 | whose key is equivalent to \tcode{k}, |
17955 | | -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 17954 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
17956 | 17955 | Otherwise, equivalent to |
17957 | 17956 | \begin{codeblock} |
17958 | 17957 | try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj)) |
|
18007 | 18006 | \effects |
18008 | 18007 | If the map already contains an element \tcode{e} |
18009 | 18008 | whose key is equivalent to \tcode{k}, |
18010 | | -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 18009 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
18011 | 18010 | Otherwise, equivalent to |
18012 | 18011 | \begin{codeblock} |
18013 | 18012 | try_emplace(std::forward<K>(k), std::forward<M>(obj)) |
@@ -18621,14 +18620,14 @@ |
18621 | 18620 | \pnum |
18622 | 18621 | \effects |
18623 | 18622 | Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and |
18624 | | -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively, |
| 18623 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively, |
18625 | 18624 | except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed |
18626 | 18625 | with uses-allocator construction\iref{allocator.uses.construction}. |
18627 | 18626 |
|
18628 | 18627 | \pnum |
18629 | 18628 | \complexity |
18630 | 18629 | Same as \tcode{flat_multimap(key_cont, mapped_cont)} and |
18631 | | -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively. |
| 18630 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively. |
18632 | 18631 | \end{itemdescr} |
18633 | 18632 |
|
18634 | 18633 | \indexlibraryctor{flat_multimap}% |
|
23189 | 23188 | \item |
23190 | 23189 | If \exposid{rank_} is greater than one, |
23191 | 23190 | then the product of |
23192 | | -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and |
| 23191 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and |
23193 | 23192 | all values \tcode{ext.extent($k$)} |
23194 | 23193 | with $k$ in the range of \range{1}{\exposid{rank_}} |
23195 | 23194 | is representable as a value of type \tcode{index_type}. |
|
23268 | 23267 | \item |
23269 | 23268 | If \exposid{rank_} is greater than \tcode{1} and |
23270 | 23269 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
23271 | | -then \tcode{other.\linebreak stride(1)} equals |
| 23270 | +then \tcode{other.stride(1)} equals |
23272 | 23271 | \begin{codeblock} |
23273 | 23272 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
23274 | 23273 | extents_type::@\exposid{index-cast}@(other.extents().extent(0))) |
|
23336 | 23335 | \item |
23337 | 23336 | If \exposid{rank_} is greater than 1 and |
23338 | 23337 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
23339 | | -then \tcode{other.\linebreak stride(1)} equals |
| 23338 | +then \tcode{other.stride(1)} equals |
23340 | 23339 | \begin{codeblock} |
23341 | 23340 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
23342 | 23341 | extents_type::@\exposid{index-cast}@(other.extent(0))) |
|
23734 | 23733 | if \exposid{static-padding-stride} is not \tcode{dynamic_extent}. |
23735 | 23734 | \begin{note} |
23736 | 23735 | Using \tcode{extents<index_type, \exposid{static-padding-stride}>} |
23737 | | -instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2} |
| 23736 | +instead of \tcode{index_type} as the type of \exposid{stride-rm2} |
23738 | 23737 | would achieve this. |
23739 | 23738 | \end{note} |
23740 | 23739 | \end{itemdescr} |
@@ -23817,13 +23816,13 @@ |
23817 | 23816 | \item |
23818 | 23817 | If \exposid{rank_} is greater than one, |
23819 | 23818 | then the product of |
23820 | | -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and |
| 23819 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and |
23821 | 23820 | all values \tcode{ext.extent($k$)} |
23822 | 23821 | with $k$ in the range of \range{0}{\exposid{rank_} - 1} |
23823 | 23822 | is representable as a value of type \tcode{index_type}. |
23824 | 23823 | \item |
23825 | 23824 | If \tcode{padding_value} is not equal to \tcode{dynamic_extent}, |
23826 | | -\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}. |
| 23825 | +\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}. |
23827 | 23826 | \end{itemize} |
23828 | 23827 |
|
23829 | 23828 | \pnum |
|
23896 | 23895 | \item |
23897 | 23896 | If \exposid{rank_} is greater than 1 and |
23898 | 23897 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
23899 | | -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 23898 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
23900 | 23899 | \begin{codeblock} |
23901 | 23900 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
23902 | 23901 | extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1))) |
|
23964 | 23963 | \item |
23965 | 23964 | If \exposid{rank_} is greater than 1 and |
23966 | 23965 | \tcode{padding_value} does not equal \tcode{dynamic_extent}, |
23967 | | -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 23966 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
23968 | 23967 | \begin{codeblock} |
23969 | 23968 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value, |
23970 | 23969 | extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1))) |
|
25623 | 25622 | \item |
25624 | 25623 | \tcode{stride(k) * \exposid{de-ice}($s_k$.stride)} |
25625 | 25624 | if $S_k$ is a specialization of \tcode{strided_slice} and |
25626 | | -\tcode{$s_k$.stride < $s_k$.\linebreak extent} is \tcode{true}; |
| 25625 | +\tcode{$s_k$.stride < $s_k$.extent} is \tcode{true}; |
25627 | 25626 | \item |
25628 | 25627 | otherwise, \tcode{stride($k$)}. |
25629 | 25628 | \end{itemize} |
@@ -26021,11 +26020,11 @@ |
26021 | 26020 | \begin{itemize} |
26022 | 26021 | \item |
26023 | 26022 | \tcode{decltype(submdspan_mapping(src.mapping(), slices...))} |
26024 | | -is a specialization of \tcode{submd-\linebreak{}span_mapping_result}. |
| 26023 | +is a specialization of \tcode{submdspan_mapping_result}. |
26025 | 26024 |
|
26026 | 26025 | \item |
26027 | 26026 | \tcode{is_same_v<remove_cvref_t<decltype(sub_map_offset.mapping.extents())>,} |
26028 | | -\tcode{decltype(\linebreak{}submdspan_extents(src.mapping(), slices...))>} |
| 26027 | +\tcode{decltype(submdspan_extents(src.mapping(), slices...))>} |
26029 | 26028 | is \tcode{true}. |
26030 | 26029 |
|
26031 | 26030 | \item |
@@ -26055,11 +26054,11 @@ |
26055 | 26054 | \item |
26056 | 26055 | $0 \le \tcode{\exposid{first_}<index_type, $k$>(slices...)}$ |
26057 | 26056 | $\le \tcode{\exposid{last_}<$k$>(src.extents(), slices...)}$ |
26058 | | - $\le \tcode{\linebreak{}src.extent($k$)}$ |
| 26057 | + $\le \tcode{src.extent($k$)}$ |
26059 | 26058 | \end{itemize} |
26060 | 26059 |
|
26061 | 26060 | \item |
26062 | | -\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}\linebreak |
| 26061 | +\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)} |
26063 | 26062 | is \tcode{true}; and |
26064 | 26063 |
|
26065 | 26064 | \item |
|
0 commit comments