Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::StrTimeFormat Struct Reference
Inheritance diagram for duckdb::StrTimeFormat:
Collaboration diagram for duckdb::StrTimeFormat:

Public Member Functions

bool HasFormatSpecifier (StrTimeSpecifier s) const
 
DUCKDB_API bool Empty () const
 If the string format is empty.
 

Static Public Member Functions

static DUCKDB_API string ParseFormatSpecifier (const string &format_string, StrTimeFormat &format)
 

Public Attributes

string format_specifier
 The full format specifier, for error messages.
 

Protected Member Functions

void AddLiteral (string literal)
 
virtual DUCKDB_API void AddFormatSpecifier (string preceding_literal, StrTimeSpecifier specifier)
 

Protected Attributes

vector< StrTimeSpecifier > specifiers
 The format specifiers.
 
vector< string > literals
 
idx_t constant_size = 0
 The constant size that appears in the format string.
 
vector< intnumeric_width
 The max numeric width of the specifier (if it is parsed as a number), or -1 if it is not a number.
 

Constructor & Destructor Documentation

◆ ~StrTimeFormat()

virtual duckdb::StrTimeFormat::~StrTimeFormat ( )
inlinevirtual
46086 {
46087 }

Member Function Documentation

◆ HasFormatSpecifier()

bool duckdb::StrTimeFormat::HasFormatSpecifier ( StrTimeSpecifier  s) const
inline
46091 {
46092 return std::find(specifiers.begin(), specifiers.end(), s) != specifiers.end();
46093 }
vector< StrTimeSpecifier > specifiers
The format specifiers.
Definition duckdb.hpp:46102

Member Data Documentation

◆ literals

vector<string> duckdb::StrTimeFormat::literals
protected

The literals that appear in between the format specifiers The following must hold: literals.size() = specifiers.size() + 1 Format is literals[0], specifiers[0], literals[1], ..., specifiers[n - 1], literals[n]


The documentation for this struct was generated from the following file: