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::NodeHandle< T > Class Template Reference
Collaboration diagram for duckdb::NodeHandle< T >:

Public Member Functions

 NodeHandle (ART &art, const Node node)
 
 NodeHandle (const NodeHandle &)=delete
 
NodeHandleoperator= (const NodeHandle &)=delete
 
 NodeHandle (NodeHandle &&other) noexcept
 
NodeHandleoperator= (NodeHandle &&other) noexcept=delete
 
T & Get ()
 

Private Attributes

SegmentHandle handle
 
T & n
 

Constructor & Destructor Documentation

◆ NodeHandle() [1/2]

template<class T >
duckdb::NodeHandle< T >::NodeHandle ( ART art,
const Node  node 
)
inline
12083 : handle(Node::GetAllocator(art, node.GetType()).GetHandle(node)), n(handle.GetRef<T>()) {
12084 handle.MarkModified();
12085 }
static FixedSizeAllocator & GetAllocator(const ART &art, const NType type)
Get a reference to the allocator.

◆ NodeHandle() [2/2]

template<class T >
duckdb::NodeHandle< T >::NodeHandle ( NodeHandle< T > &&  other)
inlinenoexcept
12090 : handle(std::move(other.handle)), n(handle.GetRef<T>()) {
12091 }

Member Function Documentation

◆ Get()

template<class T >
T & duckdb::NodeHandle< T >::Get ( )
inline
12095 {
12096 return n;
12097 }

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