Qx v0.7
Qt Extensions Library
Loading...
Searching...
No Matches
Qx::sql_stringable Concept Reference

Specifies that a type can be converted to SqlString, or used to construct a SqlString. More...

Concept definition

template<typename T>
concept Qx::sql_stringable = std::convertible_to<T, SqlString> || std::constructible_from<SqlString, T>
Specifies that a type can be converted to SqlString, or used to construct a SqlString.
Definition qx-sqlstring.h:33

Detailed Description

Satisfied if T is convertible to SqlString.