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::UhugeintToStringCast Struct Reference

Static Public Member Functions

static string_t Format (uhugeint_t value, Vector &vector)
 

Member Function Documentation

◆ Format()

static string_t duckdb::UhugeintToStringCast::Format ( uhugeint_t  value,
Vector vector 
)
inlinestatic
19869 {
19870 std::string str = value.ToString();
19871 string_t result = StringVector::EmptyString(vector, str.length());
19872 auto data = result.GetDataWriteable();
19873
19874 memcpy(data, str.data(), str.length()); // NOLINT: null-termination not required
19875 result.Finalize();
19876 return result;
19877 }
static DUCKDB_API string_t EmptyString(Vector &vector, idx_t len)

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