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

Function get

inst/include/Rcpp/Environment.h:97–100  ·  view source on GitHub ↗

* Get an object from the environment * * @param name name of the object * * @return a SEXP (possibly R_NilValue) */

Source from the content-addressed store, hash-verified

95 * @return a SEXP (possibly R_NilValue)
96 */
97 SEXP get(const std::string& name) const {
98 Symbol nameSym = Rf_install(name.c_str());
99 return get(nameSym);
100 }
101
102 /**
103 * Get an object from the environment

Callers 15

XPtrClass · 0.85
operator!Method · 0.85
checked_getMethod · 0.85
releaseMethod · 0.85
asMethod · 0.85
cloneMethod · 0.85
String.hFile · 0.85
generic_proxyClass · 0.85
swapMethod · 0.85
string_proxyClass · 0.85
operator==Method · 0.85
operator!=Method · 0.85

Calls 1

Rcpp_eval_implFunction · 0.85

Tested by

no test coverage detected