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::DependencyInfo Struct Reference
Collaboration diagram for duckdb::DependencyInfo:

Static Public Member Functions

static DependencyInfo FromSubject (DependencyEntry &dep)
 
static DependencyInfo FromDependent (DependencyEntry &dep)
 

Public Attributes

DependencyDependent dependent
 
DependencySubject subject
 

Detailed Description

Every dependency consists of a subject (the entry being depended on) and a dependent (the entry that has the dependency)

Member Function Documentation

◆ FromSubject()

DependencyInfo duckdb::DependencyInfo::FromSubject ( DependencyEntry dep)
static
25547 {
25548 return DependencyInfo {/*dependent = */ dep.Dependent(),
25549 /*subject = */ dep.Subject()};
25550}

◆ FromDependent()

DependencyInfo duckdb::DependencyInfo::FromDependent ( DependencyEntry dep)
static
25552 {
25553 return DependencyInfo {/*dependent = */ dep.Dependent(),
25554 /*subject = */ dep.Subject()};
25555}

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