Firefly 3.1.0
Standalone library for vector calculations
|
Concept that ensures the type is either arithmetic or a complex type. More...
#include <vector.hpp>
Concept that ensures the type is either arithmetic or a complex type.
This concept is satisfied if the type T
is either an arithmetic type (such as int
, float
, etc.) or a complex type (i.e., a specialization of std::complex
with an arithmetic value type). It is used to ensure that operations work with both real numbers and complex numbers.
T | The type to check. |