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

Concept constraining types to tuple-like types (std::tuple, std::pair, std::array). More...

#include <StructBinding.h>

Concept definition

template<typename T>
concept fbcpp::TupleLike = !Aggregate<T> && requires { typename std::tuple_size<T>::type; }
Concept constraining types to aggregates suitable for struct binding.
Concept constraining types to tuple-like types (std::tuple, std::pair, std::array).

Detailed Description

Concept constraining types to tuple-like types (std::tuple, std::pair, std::array).

Definition at line 48 of file StructBinding.h.