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

Function rcpp_exception_to_r_condition

inst/include/Rcpp/exceptions.h:357–360  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

355}
356
357inline SEXP rcpp_exception_to_r_condition(const Rcpp::exception& ex) {
358 ex.copy_stack_trace_to_r();
359 return exception_to_condition_template(ex, ex.include_call());
360}
361
362inline SEXP exception_to_r_condition( const std::exception& ex){
363 return exception_to_condition_template(ex, RCPP_DEFAULT_INCLUDE_CALL);

Callers

nothing calls this directly

Calls 3

copy_stack_trace_to_rMethod · 0.80
include_callMethod · 0.80

Tested by

no test coverage detected