relx 0.1.0
A Modern C++23 Type-Safe SQL Query Builder
Loading...
Searching...
No Matches
relx::query::arithmetic_checking::Arithmetic Concept Reference

Concept for numeric types suitable for arithmetic operations. More...

#include <relx/query/arithmetic.hpp>

Concept definition

template<typename T>
concept relx::query::arithmetic_checking::Arithmetic = std::is_arithmetic_v<std::remove_cvref_t<T>> &&
!std::same_as<std::remove_cvref_t<T>, bool>
Concept for numeric types suitable for arithmetic operations.

Detailed Description

Concept for numeric types suitable for arithmetic operations.

Definition at line 18 of file arithmetic.hpp.