Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -17724,8 +17724,8 @@

\pnum
\constraints
Every type in the parameter pack \tcode{Flags} is one of \tcode{\exposid{convert-flag}},
\tcode{\exposid{aligned-flag}}, or \tcode{\exposid{over\-aligned-\brk{}flag}<N>}.
Every type in the parameter pack \tcode{Flags} is one of \exposid{convert-flag},
\exposid{aligned-flag}, or \tcode{\exposid{over\-aligned-\brk{}flag}<N>}.

\rSec3[simd.flags.oper]{\tcode{flags} operators}

Expand Down Expand Up @@ -18300,15 +18300,15 @@
\pnum
\mandates
If the template parameter pack \tcode{Flags} does not contain
\tcode{\exposid{convert-flag}}, then the conversion from
\exposid{convert-flag}, then the conversion from
\tcode{ranges::range_value_t<R>} to \tcode{value_type} is value-preserving.

\pnum
\expects
\begin{itemize}
\item
If the template parameter pack \tcode{Flags} contains
\tcode{\exposid{aligned-flag}}, \tcode{ranges::data(r)} points to
\exposid{aligned-flag}, \tcode{ranges::data(r)} points to
storage aligned by \tcode{alignment_v<basic_vec,
ranges::range_value_t<R>>}.
\item
Expand Down Expand Up @@ -19119,7 +19119,7 @@
\tcode{V} is an enabled specialization of \tcode{basic_vec}, and
\item
if the template parameter pack \tcode{Flags} does not contain
\tcode{\exposid{convert-flag}}, then the conversion from
\exposid{convert-flag}, then the conversion from
\tcode{ranges::range_value_t<R>} to \tcode{V::value_type} is
value-preserving.
\end{itemize}
Expand All @@ -19135,7 +19135,7 @@
parameter.
\item
If the template parameter pack \tcode{Flags} contains
\tcode{\exposid{aligned-flag}}, \tcode{ranges::data(r)} points to storage
\exposid{aligned-flag}, \tcode{ranges::data(r)} points to storage
aligned by \tcode{alignment_v<V, ranges::range_value_t<R>>}.
\item
If the template parameter pack \tcode{Flags} contains
Expand Down Expand Up @@ -19282,7 +19282,7 @@
\tcode{ranges::range_value_t<R>} is a vectorizable type, and
\item
if the template parameter pack \tcode{Flags} does not contain
\tcode{\exposid{convert-flag}}, then the conversion from \tcode{T} to
\exposid{convert-flag}, then the conversion from \tcode{T} to
\tcode{ranges::range_value_t<R>} is value-preserving.
\end{itemize}

Expand All @@ -19297,7 +19297,7 @@
parameter.
\item
If the template parameter pack \tcode{Flags} contains
\tcode{\exposid{aligned-flag}}, \tcode{ranges::data(r)} points to storage
\exposid{aligned-flag}, \tcode{ranges::data(r)} points to storage
aligned by \tcode{alignment_v<basic_vec<T, Abi>,
ranges::range_value_t<R>>}.
\item
Expand Down Expand Up @@ -19475,7 +19475,7 @@
elements in \tcode{selector}, in ascending order.
\item
\tcode{\exposidnc{bit-lookup}($b$)} be a function which returns the index
where $b$ appears in \tcode{\exposid{set-indices}}.
where $b$ appears in \exposid{set-indices}.
\item
\tcode{\exposidnc{select-value}($i$)} be a function which returns
\tcode{v[\exposidnc{bit-lookup}($i$)]} if \tcode{selector[$i$]} is
Expand Down Expand Up @@ -19886,7 +19886,7 @@
\begin{codeblock}
return @\exposid{simd-select-impl}@(c, a, b);
\end{codeblock}
where \tcode{\exposid{simd-select-impl}} is found by argument-dependent
where \exposid{simd-select-impl} is found by argument-dependent
lookup\iref{basic.lookup.argdep} contrary to \ref{contents}.
\end{itemdescr}

Expand Down
2 changes: 1 addition & 1 deletion tools/check-source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ grep -n 'U+' $texfiles |
fail 'use \\unicode or \\ucode or \\uname instead' || failed=1

# Discourage double-wrapping \tcode{\exposid{data_}}
grep -n '\\tcode{\\exposid{[a-zA-Z0-9_]*}}' $texfiles |
grep -n '\\tcode{\\exposid{[a-zA-Z0-9_-]*}}' $texfiles |
fail 'double-wrapped \\exposid in \\tcode' || failed=1

# Hex digits inside \ucode and \unicode must be lowercase so that \textsc works
Expand Down
Loading