|
2372 | 2372 | Assigns \tcode{nh.ptr_} to \tcode{ptr_}.
|
2373 | 2373 | \item
|
2374 | 2374 | If \tcode{!alloc\textunderscore} or \tcode{ator_traits::propagate_on_container_move_assignment::value}
|
2375 |
| -is \tcode{true}, \linebreak |
2376 |
| -move assigns \tcode{nh.alloc_} to \tcode{alloc_}. |
| 2375 | +is \tcode{true}, move assigns \tcode{nh.alloc_} to \tcode{alloc_}. |
2377 | 2376 | \item
|
2378 | 2377 | Assigns
|
2379 | 2378 | \keyword{nullptr} to \tcode{nh.ptr_} and assigns \tcode{nullopt} to
|
|
7391 | 7390 | \pnum
|
7392 | 7391 | \expects
|
7393 | 7392 | \tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
|
7394 |
| -from \tcode{std::forward<Args>(\linebreak args)...}. |
| 7393 | +from \tcode{std::forward<Args>(args)...}. |
7395 | 7394 | \tcode{position} is \tcode{before_begin()} or is a dereferenceable
|
7396 | 7395 | iterator in the range \range{begin()}{end()}.
|
7397 | 7396 |
|
7398 | 7397 | \pnum
|
7399 | 7398 | \effects
|
7400 | 7399 | Inserts an object of type \tcode{value_type} direct-non-list-initialized with
|
7401 |
| -\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}. |
| 7400 | +\tcode{std::forward<Args>(args)...} after \tcode{position}. |
7402 | 7401 |
|
7403 | 7402 | \pnum
|
7404 | 7403 | \returns
|
|
9417 | 9416 | \pnum
|
9418 | 9417 | The expression
|
9419 | 9418 | \tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
|
9420 |
| -if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference} |
| 9419 | +if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference} |
9421 | 9420 | for some type \tcode{Alloc} and
|
9422 | 9421 | \tcode{vector<bool, Alloc>} is not a program-defined specialization.
|
9423 | 9422 | \end{itemdescr}
|
|
10810 | 10809 | Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
|
10811 | 10810 | Constructs an object \tcode{u} of type \tcode{value_type} with
|
10812 | 10811 | \tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
|
10813 |
| -forward_as_tuple(std::forward<Args>(args)...)}.\linebreak |
| 10812 | +forward_as_tuple(std::forward<Args>(args)...)}. |
10814 | 10813 | If \tcode{equal_range(u.first) == r} is \tcode{false},
|
10815 | 10814 | the behavior is undefined.
|
10816 | 10815 | Inserts \tcode{u} into \tcode{*this}.
|
|
16267 | 16266 | \pnum
|
16268 | 16267 | \effects
|
16269 | 16268 | Equivalent to \tcode{flat_map(s, key_cont, mapped_cont)} and
|
16270 |
| -\tcode{flat_map(s, key_cont, \linebreak{}mapped_cont, comp)}, respectively, |
| 16269 | +\tcode{flat_map(s, key_cont, mapped_cont, comp)}, respectively, |
16271 | 16270 | except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
|
16272 | 16271 | with uses-allocator construction\iref{allocator.uses.construction}.
|
16273 | 16272 |
|
|
16450 | 16449 | \pnum
|
16451 | 16450 | \effects
|
16452 | 16451 | Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
|
16453 |
| -with \tcode{std::forward<Args>(\linebreak args)...}; |
| 16452 | +with \tcode{std::forward<Args>(args)...}; |
16454 | 16453 | if the map already contains an element
|
16455 | 16454 | whose key is equivalent to \tcode{t.first},
|
16456 | 16455 | \tcode{*this} is unchanged.
|
|
16727 | 16726 | \effects
|
16728 | 16727 | If the map already contains an element \tcode{e}
|
16729 | 16728 | whose key is equivalent to \tcode{k},
|
16730 |
| -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 16729 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
16731 | 16730 | Otherwise, equivalent to
|
16732 | 16731 | \begin{codeblock}
|
16733 | 16732 | try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
|
|
16782 | 16781 | \effects
|
16783 | 16782 | If the map already contains an element \tcode{e}
|
16784 | 16783 | whose key is equivalent to \tcode{k},
|
16785 |
| -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 16784 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
16786 | 16785 | Otherwise, equivalent to
|
16787 | 16786 | \begin{codeblock}
|
16788 | 16787 | try_emplace(std::forward<K>(k), std::forward<M>(obj))
|
@@ -17387,14 +17386,14 @@
|
17387 | 17386 | \pnum
|
17388 | 17387 | \effects
|
17389 | 17388 | Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
|
17390 |
| -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively, |
| 17389 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively, |
17391 | 17390 | except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
|
17392 | 17391 | with uses-allocator construction\iref{allocator.uses.construction}.
|
17393 | 17392 |
|
17394 | 17393 | \pnum
|
17395 | 17394 | \complexity
|
17396 | 17395 | Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
|
17397 |
| -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively. |
| 17396 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively. |
17398 | 17397 | \end{itemdescr}
|
17399 | 17398 |
|
17400 | 17399 | \indexlibraryctor{flat_multimap}%
|
|
21920 | 21919 | \item
|
21921 | 21920 | If \exposid{rank_} is greater than one,
|
21922 | 21921 | then the product of
|
21923 |
| -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and |
| 21922 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and |
21924 | 21923 | all values \tcode{ext.extent($k$)}
|
21925 | 21924 | with $k$ in the range of \range{1}{\exposid{rank_}}
|
21926 | 21925 | is representable as a value of type \tcode{index_type}.
|
|
21999 | 21998 | \item
|
22000 | 21999 | If \exposid{rank_} is greater than \tcode{1} and
|
22001 | 22000 | \tcode{padding_value} does not equal \tcode{dynamic_extent},
|
22002 |
| -then \tcode{other.\linebreak stride(1)} equals |
| 22001 | +then \tcode{other.stride(1)} equals |
22003 | 22002 | \begin{codeblock}
|
22004 | 22003 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
|
22005 | 22004 | extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
|
|
22066 | 22065 | \item
|
22067 | 22066 | If \exposid{rank_} is greater than 1 and
|
22068 | 22067 | \tcode{padding_value} does not equal \tcode{dynamic_extent},
|
22069 |
| -then \tcode{other.\linebreak stride(1)} equals |
| 22068 | +then \tcode{other.stride(1)} equals |
22070 | 22069 | \begin{codeblock}
|
22071 | 22070 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
|
22072 | 22071 | extents_type::@\exposid{index-cast}@(other.extent(0)))
|
|
22464 | 22463 | if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
|
22465 | 22464 | \begin{note}
|
22466 | 22465 | Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
|
22467 |
| -instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2} |
| 22466 | +instead of \tcode{index_type} as the type of \exposid{stride-rm2} |
22468 | 22467 | would achieve this.
|
22469 | 22468 | \end{note}
|
22470 | 22469 | \end{itemdescr}
|
@@ -22547,13 +22546,13 @@
|
22547 | 22546 | \item
|
22548 | 22547 | If \exposid{rank_} is greater than one,
|
22549 | 22548 | then the product of
|
22550 |
| -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and |
| 22549 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and |
22551 | 22550 | all values \tcode{ext.extent($k$)}
|
22552 | 22551 | with $k$ in the range of \range{0}{\exposid{rank_} - 1}
|
22553 | 22552 | is representable as a value of type \tcode{index_type}.
|
22554 | 22553 | \item
|
22555 | 22554 | If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
|
22556 |
| -\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}. |
| 22555 | +\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}. |
22557 | 22556 | \end{itemize}
|
22558 | 22557 |
|
22559 | 22558 | \pnum
|
|
22626 | 22625 | \item
|
22627 | 22626 | If \exposid{rank_} is greater than 1 and
|
22628 | 22627 | \tcode{padding_value} does not equal \tcode{dynamic_extent},
|
22629 |
| -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 22628 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
22630 | 22629 | \begin{codeblock}
|
22631 | 22630 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
|
22632 | 22631 | extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
|
|
22694 | 22693 | \item
|
22695 | 22694 | If \exposid{rank_} is greater than 1 and
|
22696 | 22695 | \tcode{padding_value} does not equal \tcode{dynamic_extent},
|
22697 |
| -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 22696 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
22698 | 22697 | \begin{codeblock}
|
22699 | 22698 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
|
22700 | 22699 | extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))
|
|
24284 | 24283 | \item
|
24285 | 24284 | \tcode{stride(k) * \exposid{de-ice}($s_k$.stride)}
|
24286 | 24285 | if $S_k$ is a specialization of \tcode{strided_slice} and
|
24287 |
| -\tcode{$s_k$.stride < $s_k$.\linebreak extent} is \tcode{true}; |
| 24286 | +\tcode{$s_k$.stride < $s_k$.extent} is \tcode{true}; |
24288 | 24287 | \item
|
24289 | 24288 | otherwise, \tcode{stride($k$)}.
|
24290 | 24289 | \end{itemize}
|
@@ -24682,11 +24681,11 @@
|
24682 | 24681 | \begin{itemize}
|
24683 | 24682 | \item
|
24684 | 24683 | \tcode{decltype(submdspan_mapping(src.mapping(), slices...))}
|
24685 |
| -is a specialization of \tcode{submd-\linebreak{}span_mapping_result}. |
| 24684 | +is a specialization of \tcode{submdspan_mapping_result}. |
24686 | 24685 |
|
24687 | 24686 | \item
|
24688 | 24687 | \tcode{is_same_v<remove_cvref_t<decltype(sub_map_offset.mapping.extents())>,}
|
24689 |
| -\tcode{decltype(\linebreak{}submdspan_extents(src.mapping(), slices...))>} |
| 24688 | +\tcode{decltype(submdspan_extents(src.mapping(), slices...))>} |
24690 | 24689 | is \tcode{true}.
|
24691 | 24690 |
|
24692 | 24691 | \item
|
@@ -24716,11 +24715,11 @@
|
24716 | 24715 | \item
|
24717 | 24716 | $0 \le \tcode{\exposid{first_}<index_type, $k$>(slices...)}$
|
24718 | 24717 | $\le \tcode{\exposid{last_}<$k$>(src.extents(), slices...)}$
|
24719 |
| - $\le \tcode{\linebreak{}src.extent($k$)}$ |
| 24718 | + $\le \tcode{src.extent($k$)}$ |
24720 | 24719 | \end{itemize}
|
24721 | 24720 |
|
24722 | 24721 | \item
|
24723 |
| -\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}\linebreak |
| 24722 | +\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)} |
24724 | 24723 | is \tcode{true}; and
|
24725 | 24724 |
|
24726 | 24725 | \item
|
|
0 commit comments