...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Constructs a field_view
holding NULL.
constexpr field_view(); »more...
explicit constexpr field_view( std::nullptr_t); »more...
Constructs a field_view
holding an int64
.
explicit
constexpr
field_view(
signed char v);
» more...
Constructs a field_view
holding an int64
.
explicit constexpr field_view( short v); »more...
explicit constexpr field_view( int v); »more...
explicit constexpr field_view( long v); »more...
explicit constexpr field_view( long long v); »more...
Constructs a field_view
holding a uint64
.
explicit
constexpr
field_view(
unsigned char v);
» more...
Constructs a field_view
holding a uint64
.
explicit constexpr field_view( unsigned short v); »more...
explicit constexpr field_view( unsigned int v); »more...
explicit constexpr field_view( unsigned long v); »more...
explicit constexpr field_view( unsigned long long v); »more...
Constructors from character types would incorrectly construct a field_view
holding an integer, so they
are not allowed.
explicit
field_view(
char) = delete;
» more...
Constructors from character types would incorrectly construct a field_view
holding an integer, so they
are not allowed.
explicit field_view( wchar_t) = delete; »more...
explicit field_view( char16_t) = delete; »more...
explicit field_view( char32_t) = delete; »more...
explicit field_view( char8_t) = delete; »more...
Constructs a field_view
holding a string.
explicit
constexpr
field_view(
string_view v);
» more...
Constructs a field_view
holding a blob.
explicit
constexpr
field_view(
blob_view v);
» more...
Constructs a field_view
holding a float
.
explicit
constexpr
field_view(
float v);
» more...
Constructs a field_view
holding a double
.
explicit
constexpr
field_view(
double v);
» more...
Constructs a field_view
holding a date
.
explicit
constexpr
field_view(
const date& v);
» more...
Constructs a field_view
holding a datetime
.
explicit
constexpr
field_view(
const datetime& v);
» more...
Constructs a field_view
holding a time
.
explicit
constexpr
field_view(
const time& v);
» more...