Go to the source code of this file.
◆ BEGIN_RCPP
Value: int rcpp_output_type = 0 ; \
int nprot = 0; \
(void)rcpp_output_type; \
SEXP rcpp_output_condition = R_NilValue ; \
(void)rcpp_output_condition; \
static SEXP stop_sym = Rf_install("stop"); \
try {
Definition at line 49 of file macros.h.
◆ END_RCPP
◆ END_RCPP_RETURN_ERROR
#define END_RCPP_RETURN_ERROR |
Value: } \
} \
} \
catch (std::exception &__ex__) { \
} \
catch (...) { \
} \
UNPROTECT(nprot); \
return R_NilValue; \
(void) stop_sym;
SEXP exception_to_try_error(const std::exception &ex)
SEXP string_to_try_error(const std::string &str)
SEXP longjumpSentinel(SEXP token)
Definition at line 106 of file macros.h.
◆ RCPP_DECORATE
#define RCPP_DECORATE |
( |
|
__FUN__ | ) |
__FUN__##__rcpp__wrapper__ |
◆ Rcpp_error
#define Rcpp_error |
( |
|
MESSAGE | ) |
throw Rcpp::exception(MESSAGE, __FILE__, __LINE__) |
◆ RCPP_GET_CLASS
#define RCPP_GET_CLASS |
( |
|
x | ) |
Rf_getAttrib(x, R_ClassSymbol) |
◆ RCPP_GET_NAMES
#define RCPP_GET_NAMES |
( |
|
x | ) |
Rf_getAttrib(x, R_NamesSymbol) |
◆ VOID_END_RCPP