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
basic_format_arg< Context > Class Template Reference

Classes

class  handle
 

Public Member Functions

FMT_CONSTEXPR operator bool () const FMT_NOEXCEPT
 
internal::type type () const
 
bool is_integral () const
 
bool is_arithmetic () const
 

Private Types

using char_type = typename Context::char_type
 

Private Attributes

internal::value< Context > value_
 
internal::type type_
 

Friends

class basic_format_args< Context >
 
class internal::arg_map< Context >
 
template<typename ContextType , typename T >
FMT_CONSTEXPR basic_format_arg< ContextType > internal::make_arg (const T &value)
 
template<typename Visitor , typename Ctx >
FMT_CONSTEXPR auto visit_format_arg (Visitor &&vis, const basic_format_arg< Ctx > &arg) -> decltype(vis(0))
 

Constructor & Destructor Documentation

◆ basic_format_arg()

template<typename Context >
FMT_CONSTEXPR basic_format_arg< Context >::basic_format_arg ( )
inline
15810: type_(internal::none_type) {}

Member Function Documentation

◆ operator bool()

template<typename Context >
FMT_CONSTEXPR basic_format_arg< Context >::operator bool ( ) const
inlineexplicit
15812 {
15813 return type_ != internal::none_type;
15814 }

◆ type()

template<typename Context >
internal::type basic_format_arg< Context >::type ( ) const
inline
15816{ return type_; }
Here is the caller graph for this function:

◆ is_integral()

template<typename Context >
bool basic_format_arg< Context >::is_integral ( ) const
inline
15818{ return internal::is_integral_type(type_); }

◆ is_arithmetic()

template<typename Context >
bool basic_format_arg< Context >::is_arithmetic ( ) const
inline
15819{ return internal::is_arithmetic_type(type_); }

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