MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / LongjumpException

Class LongjumpException

inst/include/Rcpp/exceptions.h:163–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161namespace Rcpp {
162
163struct LongjumpException {
164 SEXP token;
165 LongjumpException(SEXP token_) : token(token_) {
166 if (internal::isLongjumpSentinel(token)) {
167 token = internal::getLongjumpToken(token);
168 }
169 }
170};
171
172 #define RCPP_ADVANCED_EXCEPTION_CLASS(__CLASS__, __WHAT__) \
173 class __CLASS__ : public std::exception { \

Callers 2

test_cpp_interfaceFunction · 0.85
unwindProtectFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_cpp_interfaceFunction · 0.68