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

Method property_names

inst/include/Rcpp/module/class.h:386–394  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

384
385
386 Rcpp::CharacterVector property_names(){
387 size_t n = properties.size() ;
388 Rcpp::CharacterVector out(n) ;
389 typename PROPERTY_MAP::iterator it = properties.begin( ) ;
390 for( size_t i=0; i<n; i++, ++it){
391 out[i] = it->first ;
392 }
393 return out ;
394 }
395
396 Rcpp::List property_classes(){
397 size_t n = properties.size() ;

Callers 1

RCPP_FUN_1Function · 0.45

Calls 2

sizeMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected