* Get an object from the environment or one of its * parents * * @param name name of the object * */
| 128 | * |
| 129 | */ |
| 130 | SEXP find( const std::string& name) const{ |
| 131 | Symbol nameSym = Rf_install(name.c_str()); |
| 132 | return find(nameSym); |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Get an object from the environment or one of its |
no test coverage detected