<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::real_type
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition
scalar_type_traits.hpp:113
tlapack
concepts
Arithmetic
Generated by
1.9.8