mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
mal_math::Primitive Concept Reference

Concept that ensures a type is either floating point or integral. More...

#include "math-common.hpp"

Concept definition

template<typename T>
concept mal_math::Primitive = std::floating_point<T> || std::integral<T>
Concept that ensures a type is either floating point or integral.

Detailed Description

Concept that ensures a type is either floating point or integral.

Definition at line 54 of file math-common.hpp.