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::NumericLimits< uhugeint_t > Struct Reference

Static Public Member Functions

static constexpr uhugeint_t Minimum ()
 
static constexpr uhugeint_t Maximum ()
 
static constexpr bool IsSigned ()
 
static constexpr bool IsIntegral ()
 
static constexpr idx_t Digits ()
 

Member Function Documentation

◆ Minimum()

static constexpr uhugeint_t duckdb::NumericLimits< uhugeint_t >::Minimum ( )
inlinestaticconstexpr
3348 {
3349 return {0, 0};
3350 };

◆ Maximum()

static constexpr uhugeint_t duckdb::NumericLimits< uhugeint_t >::Maximum ( )
inlinestaticconstexpr
3351 {
3352 return {std::numeric_limits<uint64_t>::max(), std::numeric_limits<uint64_t>::max()};
3353 };

◆ IsSigned()

static constexpr bool duckdb::NumericLimits< uhugeint_t >::IsSigned ( )
inlinestaticconstexpr
3354 {
3355 return false;
3356 }

◆ IsIntegral()

static constexpr bool duckdb::NumericLimits< uhugeint_t >::IsIntegral ( )
inlinestaticconstexpr
3357 {
3358 return true;
3359 }

◆ Digits()

static constexpr idx_t duckdb::NumericLimits< uhugeint_t >::Digits ( )
inlinestaticconstexpr
3360 {
3361 return 39;
3362 }

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