<T>LAPACK
0.1.2
C++ Template Linear Algebra PACKage
Loading...
Searching...
No Matches
tlapack::concepts::Arithmetic Concept Reference
Concept definition
template
<
typename
T>
concept
tlapack::concepts::Arithmetic
=
requires
(
const
T& a,
const
T& b, T& c)
{
c = a + b;
c = a - b;
c = a * b;
c = a / b;
c = -a;
c += a;
c -= a;
c *= a;
c /= a;
}
tlapack::concepts::Arithmetic
Definition
concepts.hpp:54
tlapack
concepts
Arithmetic
Generated by
1.9.8