* Get an object from the environment * * @param name name of the object * * @return a SEXP (possibly R_NilValue) */
| 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 |
no test coverage detected