<T>LAPACK 0.1.1
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;
}
Definition concepts.hpp:54