| 309 | return it->second->is_readonly() ; |
| 310 | } |
| 311 | std::string property_class(const std::string& p) { |
| 312 | typename PROPERTY_MAP::iterator it = properties.find( p ) ; |
| 313 | if( it == properties.end() ) throw std::range_error( "no such property" ) ; |
| 314 | return it->second->get_class() ; |
| 315 | } |
| 316 | |
| 317 | Rcpp::CharacterVector method_names(){ |
| 318 | size_t n = 0 ; |
no test coverage detected