Skip to content
Open
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -18974,7 +18974,7 @@
\pnum
\returns
If \tcode{none_of(mask)} is \tcode{true}, returns
\tcode{numeric_limits<V::value_type>::lowest()}.
\tcode{numeric_limits<T>::lowest()}.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks correct. @mattkretz , please have a look.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Otherwise, returns the value of a selected element \tcode{x[$j$]} for which
\tcode{x[$j$] < x[$i$]} is \tcode{false} for all selected indices $i$ of
\tcode{mask}.
Expand Down Expand Up @@ -20537,7 +20537,7 @@
Let \tcode{\placeholder{modf-vec}} denote:
\begin{codeblock}
pair<V, V> @\placeholder{modf-vec}@(const V& x) {
T r1[Ret::size()];
T r1[V::size()];
V r0([&](@\exposid{simd-size-type}@ i) {
return modf(V(x)[i], &r1[i]);
});
Expand Down
Loading