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

Concept for comparable types suitable for MIN/MAX. More...

#include <relx/query/function.hpp>

Concept definition

template<typename T>
concept relx::query::aggregate_checking::Comparable = std::is_arithmetic_v<std::remove_cvref_t<T>> ||
std::same_as<std::remove_cvref_t<T>, std::string> ||
std::same_as<std::remove_cvref_t<T>, std::string_view>
Concept for comparable types suitable for MIN/MAX.
Definition function.hpp:122

Detailed Description

Concept for comparable types suitable for MIN/MAX.

Definition at line 122 of file function.hpp.