Skip to content

Commit 97073b0

Browse files
committed
[numerics] Improve alignments of multi-line declarations
1 parent 55a39e7 commit 97073b0

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

source/numerics.tex

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9906,7 +9906,7 @@
99069906

99079907
\indexlibrary{\idxcode{hypot}!3-argument form}%
99089908
\begin{itemdecl}
9909-
constexpr @\placeholder{floating-point-type}@ hypot(@\placeholder{floating-point-type}@ x, @\placeholder{floating-point-type}@ y,
9909+
constexpr @\placeholdernc{floating-point-type}@ hypot(@\placeholder{floating-point-type}@ x, @\placeholder{floating-point-type}@ y,
99109910
@\placeholder{floating-point-type}@ z);
99119911
\end{itemdecl}
99129912

@@ -9920,7 +9920,7 @@
99209920

99219921
\indexlibraryglobal{lerp}%
99229922
\begin{itemdecl}
9923-
constexpr @\placeholder{floating-point-type}@ lerp(@\placeholder{floating-point-type}@ a, @\placeholder{floating-point-type}@ b,
9923+
constexpr @\placeholdernc{floating-point-type}@ lerp(@\placeholder{floating-point-type}@ a, @\placeholder{floating-point-type}@ b,
99249924
@\placeholder{floating-point-type}@ t) noexcept;
99259925
\end{itemdecl}
99269926
\begin{itemdescr}
@@ -17102,13 +17102,13 @@
1710217102
constexpr @\exposid{deduced-vec-t}@<V> hypot(const V& x, const V& y, const @\exposid{deduced-vec-t}@<V>& z);
1710317103
template<@\exposconcept{math-floating-point}@ V>
1710417104
constexpr @\exposid{deduced-vec-t}@<V> hypot(const @\exposid{deduced-vec-t}@<V>& x, const @\exposid{deduced-vec-t}@<V>& y
17105-
const V& z);
17105+
@\itcorr@ const V& z);
1710617106
template<@\exposconcept{math-floating-point}@ V>
1710717107
constexpr @\exposid{deduced-vec-t}@<V> hypot(const @\exposid{deduced-vec-t}@<V>& x, const V& y
17108-
const @\exposid{deduced-vec-t}@<V>& z);
17108+
@\itcorr@ const @\exposid{deduced-vec-t}@<V>& z);
1710917109
template<@\exposconcept{math-floating-point}@ V>
1711017110
constexpr @\exposid{deduced-vec-t}@<V> hypot(const V& x, const @\exposid{deduced-vec-t}@<V>& y
17111-
const @\exposid{deduced-vec-t}@<V>& z);
17111+
@\itcorr@ const @\exposid{deduced-vec-t}@<V>& z);
1711217112
template<@\exposconcept{math-floating-point}@ V>
1711317113
constexpr @\exposid{deduced-vec-t}@<V> pow(const V& x, const V& y);
1711417114
template<@\exposconcept{math-floating-point}@ V>
@@ -17197,13 +17197,13 @@
1719717197
constexpr @\exposid{deduced-vec-t}@<V> fma(const V& x, const V& y, const @\exposid{deduced-vec-t}@<V>& z);
1719817198
template<@\exposconcept{math-floating-point}@ V>
1719917199
constexpr @\exposid{deduced-vec-t}@<V> fma(const @\exposid{deduced-vec-t}@<V>& x, const @\exposid{deduced-vec-t}@<V>& y
17200-
const V& z);
17200+
@\itcorr@ const V& z);
1720117201
template<@\exposconcept{math-floating-point}@ V>
1720217202
constexpr @\exposid{deduced-vec-t}@<V> fma(const @\exposid{deduced-vec-t}@<V>& x, const V& y
17203-
const @\exposid{deduced-vec-t}@<V>& z);
17203+
@\itcorr@ const @\exposid{deduced-vec-t}@<V>& z);
1720417204
template<@\exposconcept{math-floating-point}@ V>
1720517205
constexpr @\exposid{deduced-vec-t}@<V> fma(const V& x, const @\exposid{deduced-vec-t}@<V>& y
17206-
const @\exposid{deduced-vec-t}@<V>& z);
17206+
@\itcorr@ const @\exposid{deduced-vec-t}@<V>& z);
1720717207
template<@\exposconcept{math-floating-point}@ V>
1720817208
constexpr @\exposid{deduced-vec-t}@<V>
1720917209
lerp(const V& a, const V& b, const V& t) noexcept;
@@ -17215,13 +17215,13 @@
1721517215
constexpr @\exposid{deduced-vec-t}@<V> lerp(const V& x, const V& y, const @\exposid{deduced-vec-t}@<V>& z);
1721617216
template<@\exposconcept{math-floating-point}@ V>
1721717217
constexpr @\exposid{deduced-vec-t}@<V> lerp(const @\exposid{deduced-vec-t}@<V>& x, const @\exposid{deduced-vec-t}@<V>& y
17218-
const V& z);
17218+
@\itcorr@ const V& z);
1721917219
template<@\exposconcept{math-floating-point}@ V>
1722017220
constexpr @\exposid{deduced-vec-t}@<V> lerp(const @\exposid{deduced-vec-t}@<V>& x, const V& y
17221-
const @\exposid{deduced-vec-t}@<V>& z);
17221+
@\itcorr@ const @\exposid{deduced-vec-t}@<V>& z);
1722217222
template<@\exposconcept{math-floating-point}@ V>
1722317223
constexpr @\exposid{deduced-vec-t}@<V> lerp(const V& x, const @\exposid{deduced-vec-t}@<V>& y
17224-
const @\exposid{deduced-vec-t}@<V>& z);
17224+
@\itcorr@ const @\exposid{deduced-vec-t}@<V>& z);
1722517225
template<@\exposconcept{math-floating-point}@ V>
1722617226
constexpr rebind_t<int, @\exposid{deduced-vec-t}@<V>> fpclassify(const V& x);
1722717227
template<@\exposconcept{math-floating-point}@ V>
@@ -17290,10 +17290,10 @@
1729017290
isunordered(const V& x, const @\exposid{deduced-vec-t}@<V>& y);
1729117291
template<@\exposconcept{math-floating-point}@ V>
1729217292
@\exposid{deduced-vec-t}@<V> assoc_laguerre(const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& n,
17293-
const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
17293+
@\itcorr@ const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
1729417294
template<@\exposconcept{math-floating-point}@ V>
1729517295
@\exposid{deduced-vec-t}@<V> assoc_legendre(const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& l,
17296-
const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
17296+
@\itcorr@ const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
1729717297
template<@\exposconcept{math-floating-point}@ V>
1729817298
@\exposid{deduced-vec-t}@<V> beta(const V& x, const V& y);
1729917299
template<@\exposconcept{math-floating-point}@ V>
@@ -20027,7 +20027,7 @@
2002720027
constexpr typename @\exposid{deduced-vec-t}@<V>::mask_type
2002820028
isgreaterequal(const V& x, const V& y);
2002920029
template<@\exposconcept{math-floating-point}@ V>
20030-
constexpr typename @\exposid{deduced-vec-t}@<V>::mask_type
20030+
constexpr typename @\exposid{deduced-vec-t}@<V>::mask_type
2003120031
isgreaterequal(const @\exposid{deduced-vec-t}@<V>& x, const V& y);
2003220032
template<@\exposconcept{math-floating-point}@ V>
2003320033
constexpr typename @\exposid{deduced-vec-t}@<V>::mask_type
@@ -20380,13 +20380,13 @@
2038020380
\begin{itemdecl}
2038120381
template<@\exposconcept{math-floating-point}@ V>
2038220382
@\exposid{deduced-vec-t}@<V> assoc_laguerre(const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& n,
20383-
const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
20383+
@\itcorr@ const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
2038420384
template<@\exposconcept{math-floating-point}@ V>
2038520385
@\exposid{deduced-vec-t}@<V> assoc_legendre(const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& l,
20386-
const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
20386+
@\itcorr@ const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
2038720387
template<@\exposconcept{math-floating-point}@ V>
2038820388
@\exposid{deduced-vec-t}@<V> sph_legendre(const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& l,
20389-
const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& theta);
20389+
@\itcorr@ const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& theta);
2039020390
\end{itemdecl}
2039120391

2039220392
\begin{itemdescr}

0 commit comments

Comments
 (0)