fb-cpp 0.0.2
A modern C++ wrapper for the Firebird database API
Loading...
Searching...
No Matches
fbcpp::Aggregate Concept Reference

Concept constraining types to aggregates suitable for struct binding. More...

#include <StructBinding.h>

Concept definition

template<typename T>
concept fbcpp::Aggregate = std::is_aggregate_v<T> && !std::is_array_v<T> && !std::is_union_v<T>
Concept constraining types to aggregates suitable for struct binding.

Detailed Description

Concept constraining types to aggregates suitable for struct binding.

Definition at line 42 of file StructBinding.h.