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

Concept for numeric types suitable for SUM and AVG. More...

#include <relx/query/function.hpp>

Concept definition

template<typename T>
concept relx::query::aggregate_checking::Summable = std::is_arithmetic_v<std::remove_cvref_t<T>> &&
!std::same_as<std::remove_cvref_t<T>, bool>
Concept for numeric types suitable for SUM and AVG.
Definition function.hpp:113

Detailed Description

Concept for numeric types suitable for SUM and AVG.

Definition at line 113 of file function.hpp.