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< hugeint_t > Struct Reference

Static Public Member Functions

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

Member Function Documentation

◆ Minimum()

static constexpr hugeint_t duckdb::NumericLimits< hugeint_t >::Minimum ( )
inlinestaticconstexpr
3329 {
3330 return {std::numeric_limits<int64_t>::lowest(), 0};
3331 };

◆ Maximum()

static constexpr hugeint_t duckdb::NumericLimits< hugeint_t >::Maximum ( )
inlinestaticconstexpr
3332 {
3333 return {std::numeric_limits<int64_t>::max(), std::numeric_limits<uint64_t>::max()};
3334 };

◆ IsSigned()

static constexpr bool duckdb::NumericLimits< hugeint_t >::IsSigned ( )
inlinestaticconstexpr
3335 {
3336 return true;
3337 }

◆ IsIntegral()

static constexpr bool duckdb::NumericLimits< hugeint_t >::IsIntegral ( )
inlinestaticconstexpr
3338 {
3339 return true;
3340 }

◆ Digits()

static constexpr idx_t duckdb::NumericLimits< hugeint_t >::Digits ( )
inlinestaticconstexpr
3341 {
3342 return 39;
3343 }

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