|
2373 | 2373 | Assigns \tcode{nh.ptr_} to \tcode{ptr_}.
|
2374 | 2374 | \item
|
2375 | 2375 | If \tcode{!alloc\textunderscore} or \tcode{ator_traits::propagate_on_container_move_assignment::value}
|
2376 |
| -is \tcode{true}, \linebreak |
2377 |
| -move assigns \tcode{nh.alloc_} to \tcode{alloc_}. |
| 2376 | +is \tcode{true}, move assigns \tcode{nh.alloc_} to \tcode{alloc_}. |
2378 | 2377 | \item
|
2379 | 2378 | Assigns
|
2380 | 2379 | \keyword{nullptr} to \tcode{nh.ptr_} and assigns \tcode{nullopt} to
|
|
7389 | 7388 | \pnum
|
7390 | 7389 | \expects
|
7391 | 7390 | \tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
|
7392 |
| -from \tcode{std::forward<Args>(\linebreak args)...}. |
| 7391 | +from \tcode{std::forward<Args>(args)...}. |
7393 | 7392 | \tcode{position} is \tcode{before_begin()} or is a dereferenceable
|
7394 | 7393 | iterator in the range \range{begin()}{end()}.
|
7395 | 7394 |
|
7396 | 7395 | \pnum
|
7397 | 7396 | \effects
|
7398 | 7397 | Inserts an object of type \tcode{value_type} direct-non-list-initialized with
|
7399 |
| -\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}. |
| 7398 | +\tcode{std::forward<Args>(args)...} after \tcode{position}. |
7400 | 7399 |
|
7401 | 7400 | \pnum
|
7402 | 7401 | \returns
|
|
9418 | 9417 | \pnum
|
9419 | 9418 | The expression
|
9420 | 9419 | \tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
|
9421 |
| -if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference} |
| 9420 | +if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference} |
9422 | 9421 | for some type \tcode{Alloc} and
|
9423 | 9422 | \tcode{vector<bool, Alloc>} is not a program-defined specialization.
|
9424 | 9423 | \end{itemdescr}
|
|
10809 | 10808 | Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
|
10810 | 10809 | Constructs an object \tcode{u} of type \tcode{value_type} with
|
10811 | 10810 | \tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
|
10812 |
| -forward_as_tuple(std::forward<Args>(args)...)}.\linebreak |
| 10811 | +forward_as_tuple(std::forward<Args>(args)...)}. |
10813 | 10812 | If \tcode{equal_range(u.first) == r} is \tcode{false},
|
10814 | 10813 | the behavior is undefined.
|
10815 | 10814 | Inserts \tcode{u} into \tcode{*this}.
|
|
16266 | 16265 | \pnum
|
16267 | 16266 | \effects
|
16268 | 16267 | Equivalent to \tcode{flat_map(s, key_cont, mapped_cont)} and
|
16269 |
| -\tcode{flat_map(s, key_cont, \linebreak{}mapped_cont, comp)}, respectively, |
| 16268 | +\tcode{flat_map(s, key_cont, mapped_cont, comp)}, respectively, |
16270 | 16269 | except that \tcode{c.keys} and \tcode{c.values} are constructed
|
16271 | 16270 | with uses-allocator construction\iref{allocator.uses.construction}.
|
16272 | 16271 |
|
|
16449 | 16448 | \pnum
|
16450 | 16449 | \effects
|
16451 | 16450 | Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
|
16452 |
| -with \tcode{std::forward<Args>(\linebreak args)...}; |
| 16451 | +with \tcode{std::forward<Args>(args)...}; |
16453 | 16452 | if the map already contains an element
|
16454 | 16453 | whose key is equivalent to \tcode{t.first},
|
16455 | 16454 | \tcode{*this} is unchanged.
|
|
16726 | 16725 | \effects
|
16727 | 16726 | If the map already contains an element \tcode{e}
|
16728 | 16727 | whose key is equivalent to \tcode{k},
|
16729 |
| -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 16728 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
16730 | 16729 | Otherwise, equivalent to
|
16731 | 16730 | \begin{codeblock}
|
16732 | 16731 | try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
|
|
16781 | 16780 | \effects
|
16782 | 16781 | If the map already contains an element \tcode{e}
|
16783 | 16782 | whose key is equivalent to \tcode{k},
|
16784 |
| -assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}. |
| 16783 | +assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}. |
16785 | 16784 | Otherwise, equivalent to
|
16786 | 16785 | \begin{codeblock}
|
16787 | 16786 | try_emplace(std::forward<K>(k), std::forward<M>(obj))
|
@@ -17386,14 +17385,14 @@
|
17386 | 17385 | \pnum
|
17387 | 17386 | \effects
|
17388 | 17387 | Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
|
17389 |
| -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively, |
| 17388 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively, |
17390 | 17389 | except that \tcode{c.keys} and \tcode{c.values} are constructed
|
17391 | 17390 | with uses-allocator construction\iref{allocator.uses.construction}.
|
17392 | 17391 |
|
17393 | 17392 | \pnum
|
17394 | 17393 | \complexity
|
17395 | 17394 | Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
|
17396 |
| -\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively. |
| 17395 | +\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively. |
17397 | 17396 | \end{itemdescr}
|
17398 | 17397 |
|
17399 | 17398 | \indexlibraryctor{flat_multimap}%
|
|
21915 | 21914 | \item
|
21916 | 21915 | If \exposid{rank_} is greater than one,
|
21917 | 21916 | then the product of
|
21918 |
| -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and |
| 21917 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and |
21919 | 21918 | all values \tcode{ext.extent($k$)}
|
21920 | 21919 | with $k$ in the range of \range{1}{\exposid{rank_}}
|
21921 | 21920 | is representable as a value of type \tcode{index_type}.
|
|
21994 | 21993 | \item
|
21995 | 21994 | If \exposid{rank_} is greater than \tcode{1} and
|
21996 | 21995 | \tcode{padding_value} does not equal \tcode{dynamic_extent},
|
21997 |
| -then \tcode{other.\linebreak stride(1)} equals |
| 21996 | +then \tcode{other.stride(1)} equals |
21998 | 21997 | \begin{codeblock}
|
21999 | 21998 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
|
22000 | 21999 | extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
|
|
22061 | 22060 | \item
|
22062 | 22061 | If \exposid{rank_} is greater than 1 and
|
22063 | 22062 | \tcode{padding_value} does not equal \tcode{dynamic_extent},
|
22064 |
| -then \tcode{other.\linebreak stride(1)} equals |
| 22063 | +then \tcode{other.stride(1)} equals |
22065 | 22064 | \begin{codeblock}
|
22066 | 22065 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
|
22067 | 22066 | extents_type::@\exposid{index-cast}@(other.extent(0)))
|
|
22459 | 22458 | if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
|
22460 | 22459 | \begin{note}
|
22461 | 22460 | Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
|
22462 |
| -instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2} |
| 22461 | +instead of \tcode{index_type} as the type of \exposid{stride-rm2} |
22463 | 22462 | would achieve this.
|
22464 | 22463 | \end{note}
|
22465 | 22464 | \end{itemdescr}
|
@@ -22542,13 +22541,13 @@
|
22542 | 22541 | \item
|
22543 | 22542 | If \exposid{rank_} is greater than one,
|
22544 | 22543 | then the product of
|
22545 |
| -\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and |
| 22544 | +\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and |
22546 | 22545 | all values \tcode{ext.extent($k$)}
|
22547 | 22546 | with $k$ in the range of \range{0}{\exposid{rank_} - 1}
|
22548 | 22547 | is representable as a value of type \tcode{index_type}.
|
22549 | 22548 | \item
|
22550 | 22549 | If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
|
22551 |
| -\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}. |
| 22550 | +\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}. |
22552 | 22551 | \end{itemize}
|
22553 | 22552 |
|
22554 | 22553 | \pnum
|
|
22621 | 22620 | \item
|
22622 | 22621 | If \exposid{rank_} is greater than 1 and
|
22623 | 22622 | \tcode{padding_value} does not equal \tcode{dynamic_extent},
|
22624 |
| -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 22623 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
22625 | 22624 | \begin{codeblock}
|
22626 | 22625 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
|
22627 | 22626 | extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
|
|
22689 | 22688 | \item
|
22690 | 22689 | If \exposid{rank_} is greater than 1 and
|
22691 | 22690 | \tcode{padding_value} does not equal \tcode{dynamic_extent},
|
22692 |
| -then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals |
| 22691 | +then \tcode{other.stride(\exposid{rank_} - 2)} equals |
22693 | 22692 | \begin{codeblock}
|
22694 | 22693 | @\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
|
22695 | 22694 | extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))
|
|
24090 | 24089 | \item
|
24091 | 24090 | \tcode{stride(k) * \exposid{de-ice}($s_k$.stride)}
|
24092 | 24091 | if $S_k$ is a specialization of \tcode{strided_slice} and
|
24093 |
| -\tcode{$s_k$.stride < $s_k$.\linebreak extent} is \tcode{true}; |
| 24092 | +\tcode{$s_k$.stride < $s_k$.extent} is \tcode{true}; |
24094 | 24093 | \item
|
24095 | 24094 | otherwise, \tcode{stride($k$)}.
|
24096 | 24095 | \end{itemize}
|
@@ -24495,11 +24494,11 @@
|
24495 | 24494 | \begin{itemize}
|
24496 | 24495 | \item
|
24497 | 24496 | \tcode{decltype(submdspan_mapping(src.mapping(), slices...))}
|
24498 |
| -is a specialization of \tcode{submd-\linebreak{}span_mapping_result}. |
| 24497 | +is a specialization of \tcode{submdspan_mapping_result}. |
24499 | 24498 |
|
24500 | 24499 | \item
|
24501 | 24500 | \tcode{is_same_v<remove_cvref_t<decltype(sub_map_offset.mapping.extents())>,}
|
24502 |
| -\tcode{decltype(\linebreak{}submdspan_extents(src.mapping(), slices...))>} |
| 24501 | +\tcode{decltype(submdspan_extents(src.mapping(), slices...))>} |
24503 | 24502 | is \tcode{true}.
|
24504 | 24503 |
|
24505 | 24504 | \item
|
@@ -24529,11 +24528,11 @@
|
24529 | 24528 | \item
|
24530 | 24529 | $0 \le \tcode{\exposid{first_}<index_type, $k$>(slices...)}$
|
24531 | 24530 | $\le \tcode{\exposid{last_}<$k$>(src.extents(), slices...)}$
|
24532 |
| - $\le \tcode{\linebreak{}src.extent($k$)}$ |
| 24531 | + $\le \tcode{src.extent($k$)}$ |
24533 | 24532 | \end{itemize}
|
24534 | 24533 |
|
24535 | 24534 | \item
|
24536 |
| -\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}\linebreak |
| 24535 | +\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)} |
24537 | 24536 | is \tcode{true}; and
|
24538 | 24537 |
|
24539 | 24538 | \item
|
|
0 commit comments