◆ TypeArgument()
| duckdb::TypeArgument::TypeArgument |
( |
string |
name_p, |
|
|
Value |
value_p |
|
) |
| |
|
inline |
53828 : name(std::move(name_p)), value(std::move(value_p)) {
53829 }
◆ GetName()
| const string & duckdb::TypeArgument::GetName |
( |
| ) |
const |
|
inline |
53830 {
53831 return name;
53832 }
◆ GetValue()
| const Value & duckdb::TypeArgument::GetValue |
( |
| ) |
const |
|
inline |
53833 {
53834 return value;
53835 }
◆ HasName()
| bool duckdb::TypeArgument::HasName |
( |
| ) |
const |
|
inline |
53836 {
53837 return !name.empty();
53838 }
◆ IsNamed()
| bool duckdb::TypeArgument::IsNamed |
( |
const char * |
name_to_check | ) |
const |
|
inline |
53839 {
53841 }
static DUCKDB_API bool CIEquals(const string &l1, const string &l2)
Case insensitive equals.
◆ IsNotNull()
| bool duckdb::TypeArgument::IsNotNull |
( |
| ) |
const |
|
inline |
53842 {
53843 return !value.IsNull();
53844 }
◆ GetType()
53845 {
53846 return value.type();
53847 }
The documentation for this class was generated from the following file: