Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Formattable concept

A type T is Formattable if it can be passed as a format argument to SQL formatting functions, like format_sql.

Formally, let T be any type, and U the result of stripping cv-qualifiers and references from T. T satisfies Formattable if any of the following are true:

For a reference table on built-in formattable types, see this section.


PrevUpHomeNext