Skip to content

[valarray.access,c.math.lerp] Add spaces around operators #7886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 23, 2025
Merged
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
6 changes: 3 additions & 3 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -7596,9 +7596,9 @@

\pnum
\remarks
The expression \tcode{addressof(a[i+j]) == addressof(a[i]) + j}
The expression \tcode{addressof(a[i + j]) == addressof(a[i]) + j}
evaluates to \tcode{true} for all \tcode{size_t i} and \tcode{size_t j}
such that \tcode{i+j < a.size()}.
such that \tcode{i + j < a.size()}.

\pnum
The expression \tcode{addressof(a[i]) != addressof(b[j])}
Expand Down Expand Up @@ -9911,7 +9911,7 @@
\item If \tcode{t == 1}, then \tcode{r == b}.
\item If \tcode{t >= 0 \&\& t <= 1}, then \tcode{isfinite(r)}.
\item If \tcode{isfinite(t) \&\& a == b}, then \tcode{r == a}.
\item If \tcode{isfinite(t) || !isnan(t) \&\& b-a != 0}, then \tcode{!isnan(r)}.
\item If \tcode{isfinite(t) || !isnan(t) \&\& b - a != 0}, then \tcode{!isnan(r)}.
\end{itemize}
Let \tcode{\placeholder{CMP}(x,y)} be \tcode{1} if \tcode{x > y},
\tcode{-1} if \tcode{x < y}, and \tcode{0} otherwise.
Expand Down
Loading