Cppgres
Build Postgres extensions in C++
Loading...
Searching...
No Matches
cppgres::combinable_aggregate Concept Reference

Concept definition

template<class T, class... Args>
concept cppgres::combinable_aggregate = aggregate<T, Args...> && requires(T &&t, T &&t1) {
{ T(t, t1) } -> std::same_as<T>;
}
Definition: aggregate.hpp:9
Definition: aggregate.hpp:25