ROption< T > Class Template Reference

The R option class. More...

Public Member Functions

 ROption (const T defaultValue, const std::string &identifier, const std::string &description, const std::string &alias, const std::string &cppName, const bool required=false, const bool input=true, const bool noTranspose=false, const std::string &bindingName="")
 Construct a ROption object. More...

 

Detailed Description


template
<
typename
T
>

class mlpack::bindings::r::ROption< T >

The R option class.

Definition at line 31 of file R_option.hpp.

Constructor & Destructor Documentation

◆ ROption()

ROption ( const T  defaultValue,
const std::string &  identifier,
const std::string &  description,
const std::string &  alias,
const std::string &  cppName,
const bool  required = false,
const bool  input = true,
const bool  noTranspose = false,
const std::string &  bindingName = "" 
)
inline

Construct a ROption object.

When constructed, it will register itself with IO. The testName parameter is not used and added for compatibility reasons.

Parameters
defaultValueDefault value this parameter will be initialized to (for flags, this should be false, for instance).
identifierThe name of the option (no dashes in front; for –help, we would pass "help").
descriptionA short string describing the option.
aliasShort name of the parameter. "" for no alias.
cppNameName of the C++ type of this parameter (i.e. "int").
requiredWhether or not the option is required at runtime.
inputWhether or not the option is an input option.
noTransposeIf the parameter is a matrix and this is true, then the matrix will not be transposed on loading.
bindingNameName of the binding that this parameter is for.

Definition at line 52 of file R_option.hpp.

References IO::AddFunction(), IO::AddParameter(), ParamData::alias, ParamData::cppType, ParamData::desc, ParamData::input, ParamData::loaded, ParamData::name, ParamData::noTranspose, ParamData::required, ParamData::tname, TYPENAME, ParamData::value, and ParamData::wasPassed.


The documentation for this class was generated from the following file:
  • /home/ryan/src/mlpack.org/_src/mlpack-git/src/mlpack/bindings/R/R_option.hpp