13#ifndef MLPACK_BINDINGS_R_PRINT_DOC_FUNCTIONS_HPP
14#define MLPACK_BINDINGS_R_PRINT_DOC_FUNCTIONS_HPP
46inline std::string
PrintValue(
const T& value,
bool quotes);
52inline std::string
PrintValue(
const bool& value,
bool quotes);
68template<
typename T,
typename... Args>
78template<
typename T,
typename... Args>
80 const std::string& paramName,
88template<
typename... Args>
125inline bool IgnoreCheck(
const std::vector<std::string>& constraints);
132 const std::vector<std::pair<std::string, bool>>& constraints,
133 const std::string& paramName);
140#include "print_doc_functions_impl.hpp"
std::string PrintValue(const T &value, bool quotes)
Given a parameter type, print the corresponding value.
std::string PrintOutputOptions(const bool)
Recursion base case.
std::string PrintOutputOptionInfo()
Print any special information about output options.
std::string ParamString(const std::string ¶mName)
Given the parameter name, determine what it would actually be when passed to the command line.
std::string GetBindingName(const std::string &bindingName)
Given the name of a binding, print its R name.
std::string PrintDefault(const std::string ¶mName)
Given a parameter name, print its corresponding default value.
std::string PrintModel(const std::string &modelName)
Given the name of a model, print it.
bool IgnoreCheck(const std::string ¶mName)
Print whether or not we should ignore a check on the given parameter.
std::string PrintDataset(const std::string &datasetName)
Given the name of a matrix, print it.
std::string PrintInputOptions()
Recursion base case.
std::string PrintInputOptionInfo()
Print any special information about input options.
std::string ProgramCall(const bool markdown, const std::string &programName, Args... args)
Given a name of a binding and a variable number of arguments (and their contents),...
std::string PrintImport()
Print any import information for the R binding.
Linear algebra utility functions, generally performed on matrices or vectors.