Skip to content

Commit 6967dae

Browse files
committed
Mention "simd" in the name of the subclauses describing its members
1 parent 13b4dd6 commit 6967dae

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

src/simd.tex

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
int find_first_set(@\UNSP{T}@);
162162
int find_last_set(@\UNSP{T}@);
163163

164-
// \ref{parallel.simd.whereexpr}, Where expression class templates \tcode{const_where_expression} and \tcode{where_expression}
164+
// \ref{parallel.simd.whereexpr}, Where expression class templates
165165
template<class M, class T> class const_where_expression;
166166
template<class M, class T> class where_expression;
167167

@@ -662,21 +662,21 @@
662662

663663
simd() noexcept = default;
664664

665-
// \ref{parallel.simd.ctor}, Constructors
665+
// \ref{parallel.simd.ctor}, \tcode{simd} constructors
666666
template<class U> simd(U&& value) noexcept;
667667
template<class U> simd(const simd<U, simd_abi::fixed_size<size()>>&) noexcept;
668668
template<class G> explicit simd(G&& gen) noexcept;
669669
template<class U, class Flags> simd(const U* mem, Flags f);
670670

671-
// \ref{parallel.simd.copy}, Copy functions
671+
// \ref{parallel.simd.copy}, \tcode{simd} copy functions
672672
template<class U, class Flags> copy_from(const U* mem, Flags f);
673673
template<class U, class Flags> copy_to(U* mem, Flags f);
674674

675-
// \ref{parallel.simd.subscr}, Subscript operators
675+
// \ref{parallel.simd.subscr}, \tcode{simd} subscript operators
676676
reference operator[](size_t);
677677
value_type operator[](size_t) const;
678678

679-
// \ref{parallel.simd.unary}, Unary operators
679+
// \ref{parallel.simd.unary}, \tcode{simd} unary operators
680680
simd& operator++() noexcept;
681681
simd operator++(int) noexcept;
682682
simd& operator--() noexcept;
@@ -686,7 +686,7 @@
686686
simd operator+() const noexcept;
687687
simd operator-() const noexcept;
688688

689-
// \ref{parallel.simd.binary}, Binary operators
689+
// \ref{parallel.simd.binary}, \tcode{simd} binary operators
690690
friend simd operator+(const simd&, const simd&) noexcept;
691691
friend simd operator-(const simd&, const simd&) noexcept;
692692
friend simd operator*(const simd&, const simd&) noexcept;
@@ -700,7 +700,7 @@
700700
friend simd operator<<(const simd&, int) noexcept;
701701
friend simd operator>>(const simd&, int) noexcept;
702702

703-
// \ref{parallel.simd.cassign}, Compound assignment
703+
// \ref{parallel.simd.cassign}, \tcode{simd} compound assignment
704704
friend simd& operator+=(simd&, const simd&) noexcept;
705705
friend simd& operator-=(simd&, const simd&) noexcept;
706706
friend simd& operator*=(simd&, const simd&) noexcept;
@@ -714,7 +714,7 @@
714714
friend simd& operator<<=(simd&, int) noexcept;
715715
friend simd& operator>>=(simd&, int) noexcept;
716716

717-
// \ref{parallel.simd.comparison}, Compare operators
717+
// \ref{parallel.simd.comparison}, \tcode{simd} compare operators
718718
friend mask_type operator==(const simd&, const simd&) noexcept;
719719
friend mask_type operator!=(const simd&, const simd&) noexcept;
720720
friend mask_type operator>=(const simd&, const simd&) noexcept;
@@ -919,7 +919,7 @@
919919
Exchanges the values \tcode{a} and \tcode{b} refer to.
920920
\end{itemdescr}
921921

922-
\rSec2[parallel.simd.ctor]{Constructors}
922+
\rSec2[parallel.simd.ctor]{\tcode{simd} constructors}
923923

924924
\begin{itemdecl}
925925
template<class U> simd(U&&) noexcept;
@@ -994,7 +994,7 @@
994994
\end{itemize}
995995
\end{itemdescr}
996996

997-
\rSec2[parallel.simd.copy]{Copy functions}
997+
\rSec2[parallel.simd.copy]{\tcode{simd} copy functions}
998998

999999
\begin{itemdecl}
10001000
template<class U, class Flags> void copy_from(const U* mem, Flags);
@@ -1040,7 +1040,7 @@
10401040
\end{itemize}
10411041
\end{itemdescr}
10421042

1043-
\rSec2[parallel.simd.subscr]{Subscript operators}
1043+
\rSec2[parallel.simd.subscr]{\tcode{simd} subscript operators}
10441044

10451045
\begin{itemdecl}
10461046
reference operator[](size_t i);
@@ -1070,7 +1070,7 @@
10701070
\pnum\throws Nothing.
10711071
\end{itemdescr}
10721072

1073-
\rSec2[parallel.simd.unary]{Unary operators}
1073+
\rSec2[parallel.simd.unary]{\tcode{simd} unary operators}
10741074

10751075
\pnum
10761076
Effects in this subclause are applied as unary element-wise operations.
@@ -1162,9 +1162,9 @@
11621162
A \tcode{simd} object where the $i^\text{th}$ element is initialized to \tcode{-operator[]($i$)} \foralli.
11631163
\end{itemdescr}
11641164

1165-
\rSec1[parallel.simd.nonmembers]{Non-member operations}
1165+
\rSec1[parallel.simd.nonmembers]{\tcode{simd} non-member operations}
11661166

1167-
\rSec2[parallel.simd.binary]{Binary operators}
1167+
\rSec2[parallel.simd.binary]{\tcode{simd} binary operators}
11681168

11691169
\begin{itemdecl}
11701170
friend simd operator+(const simd& lhs, const simd& rhs) noexcept;
@@ -1200,7 +1200,7 @@
12001200
These operators shall not participate in overload resolution unless the indicated operator can be applied to objects of type \tcode{value_type}.
12011201
\end{itemdescr}
12021202

1203-
\rSec2[parallel.simd.cassign]{Compound assignment}
1203+
\rSec2[parallel.simd.cassign]{\tcode{simd} compound assignment}
12041204

12051205
\begin{itemdecl}
12061206
friend simd& operator+=(simd& lhs, const simd& rhs) noexcept;
@@ -1239,7 +1239,7 @@
12391239
These operators shall not participate in overload resolution unless the indicated operator can be applied to objects of type \tcode{value_type}.
12401240
\end{itemdescr}
12411241

1242-
\rSec2[parallel.simd.comparison]{Compare operators}
1242+
\rSec2[parallel.simd.comparison]{\tcode{simd} compare operators}
12431243

12441244
\begin{itemdecl}
12451245
friend mask_type operator==(const simd& lhs, const simd& rhs) noexcept;

0 commit comments

Comments
 (0)