Skip to content
Open
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 @@ -12620,12 +12620,12 @@
constexpr reference access(data_handle_type p, size_t i) const;
constexpr offset_policy::data_handle_type offset(data_handle_type p, size_t i) const;

constexpr const ScalingFactor& scaling_factor() const noexcept { return @\exposid{scaling-factor}@; }
constexpr const NestedAccessor& nested_accessor() const noexcept { return @\exposid{nested-accessor}@; }
constexpr const ScalingFactor& scaling_factor() const noexcept { return @\exposid{scaling-factor_}@; }
constexpr const NestedAccessor& nested_accessor() const noexcept { return @\exposid{nested-accessor_}@; }

private:
ScalingFactor @\exposid{scaling-factor}@{}; // \expos
NestedAccessor @\exposid{nested-accessor}@{}; // \expos
ScalingFactor @\exposid{scaling-factor_}@{}; // \expos
NestedAccessor @\exposid{nested-accessor_}@{}; // \expos
};
}
\end{codeblock}
Expand Down Expand Up @@ -12661,10 +12661,10 @@
\effects
\begin{itemize}
\item
Direct-non-list-initializes \exposid{scaling-factor}
Direct-non-list-initializes \exposid{scaling-factor_}
with \tcode{other.scaling_factor()}, and
\item
direct-non-list-initializes \exposid{nested-accessor}
direct-non-list-initializes \exposid{nested-accessor_}
with \tcode{other.nested_accessor()}.
\end{itemize}
\end{itemdescr}
Expand All @@ -12679,9 +12679,9 @@
\effects
\begin{itemize}
\item
Direct-non-list-initializes \exposid{scaling-factor} with \tcode{s}, and
Direct-non-list-initializes \exposid{scaling-factor_} with \tcode{s}, and
\item
direct-non-list-initializes \exposid{nested-accessor} with \tcode{a}.
direct-non-list-initializes \exposid{nested-accessor_} with \tcode{a}.
\end{itemize}
\end{itemdescr}

Expand All @@ -12694,7 +12694,7 @@
\pnum
\returns
\begin{codeblock}
scaling_factor() * NestedAccessor::element_type(@\exposid{nested-accessor}@.access(p, i))
scaling_factor() * NestedAccessor::element_type(@\exposid{nested-accessor_}@.access(p, i))
\end{codeblock}
\end{itemdescr}

Expand All @@ -12706,7 +12706,7 @@
\begin{itemdescr}
\pnum
\returns
\tcode{\exposid{nested-accessor}.offset(p, i)}
\tcode{\exposid{nested-accessor_}.offset(p, i)}
\end{itemdescr}

\rSec3[linalg.scaled.scaled]{Function template \tcode{scaled}}
Expand Down