![]() |
Home | Libraries | People | FAQ | More |
Constructs a field_view
holding NULL.
constexpr field_view(); »more...
explicit constexpr field_view( std::nullptr_t) noexcept; »more...
Constructs a field_view
holding an int64
.
explicit constexpr field_view( signed char v) noexcept; »more...
explicit constexpr field_view( short v) noexcept; »more...
explicit constexpr field_view( int v) noexcept; »more...
explicit constexpr field_view( long v) noexcept; »more...
explicit constexpr field_view( long long v) noexcept; »more...
Constructs a field_view
holding a uint64
.
explicit constexpr field_view( unsigned char v) noexcept; »more...
explicit constexpr field_view( unsigned short v) noexcept; »more...
explicit constexpr field_view( unsigned int v) noexcept; »more...
explicit constexpr field_view( unsigned long v) noexcept; »more...
explicit constexpr field_view( unsigned long long v) noexcept; »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...
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) noexcept; »more...
Constructs a field_view
holding a blob.
explicit constexpr field_view(blob_view
v) noexcept; »more...
Constructs a field_view
holding a float
.
explicit constexpr
field_view(
float v) noexcept;
» more...
Constructs a field_view
holding a double
.
explicit constexpr
field_view(
double v) noexcept;
» more...
Constructs a field_view
holding a date
.
explicit constexpr field_view( constdate
& v) noexcept; »more...
Constructs a field_view
holding a datetime
.
explicit constexpr field_view( constdatetime
& v) noexcept; »more...
Constructs a field_view
holding a time
.
explicit constexpr field_view( consttime
& v) noexcept; »more...