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::ParsedExpressionIterator Class Reference

Static Public Member Functions

static void EnumerateChildren (const ParsedExpression &expression, const std::function< void(const ParsedExpression &child)> &callback)
 
static void EnumerateChildren (ParsedExpression &expr, const std::function< void(ParsedExpression &child)> &callback)
 
static void EnumerateChildren (ParsedExpression &expr, const std::function< void(unique_ptr< ParsedExpression > &child)> &callback)
 
static void EnumerateTableRefChildren (TableRef &ref, const std::function< void(unique_ptr< ParsedExpression > &child)> &expr_callback, const std::function< void(TableRef &ref)> &ref_callback=DefaultRefCallback)
 
static void EnumerateQueryNodeChildren (QueryNode &node, const std::function< void(unique_ptr< ParsedExpression > &child)> &expr_callback, const std::function< void(TableRef &ref)> &ref_callback=DefaultRefCallback)
 
static void EnumerateQueryNodeModifiers (QueryNode &node, const std::function< void(unique_ptr< ParsedExpression > &child)> &expr_callback)
 
static void VisitExpressionClass (const ParsedExpression &expr, ExpressionClass expr_class, const std::function< void(const ParsedExpression &child)> &callback)
 
static void VisitExpressionClassMutable (ParsedExpression &expr, ExpressionClass expr_class, const std::function< void(ParsedExpression &child)> &callback)
 
template<class T >
static void VisitExpressionMutable (ParsedExpression &expr, const std::function< void(T &child)> &callback)
 
template<class T >
static void VisitExpression (const ParsedExpression &expr, const std::function< void(const T &child)> &callback)
 

Static Private Member Functions

static void DefaultRefCallback (TableRef &ref)
 

Member Function Documentation

◆ VisitExpressionMutable()

template<class T >
static void duckdb::ParsedExpressionIterator::VisitExpressionMutable ( ParsedExpression expr,
const std::function< void(T &child)> &  callback 
)
inlinestatic
12529 {
12530 VisitExpressionClassMutable(expr, T::TYPE, [&](ParsedExpression &child) { callback(child.Cast<T>()); });
12531 }

◆ VisitExpression()

template<class T >
static void duckdb::ParsedExpressionIterator::VisitExpression ( const ParsedExpression expr,
const std::function< void(const T &child)> &  callback 
)
inlinestatic
12533 {
12534 VisitExpressionClass(expr, T::TYPE, [&](const ParsedExpression &child) { callback(child.Cast<T>()); });
12535 }

◆ DefaultRefCallback()

static void duckdb::ParsedExpressionIterator::DefaultRefCallback ( TableRef ref)
inlinestaticprivate
12538{}; // NOP

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