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

Method functions_names

inst/include/Rcpp/module/Module.h:88–96  ·  view source on GitHub ↗

* vector of names of the functions */

Source from the content-addressed store, hash-verified

86 * vector of names of the functions
87 */
88 CharacterVector functions_names(){
89 size_t n = functions.size() ;
90 CharacterVector names( n );
91 MAP::iterator it = functions.begin() ;
92 for( size_t i=0; i<n; i++, ++it){
93 names[i] = it->first ;
94 }
95 return names ;
96 }
97
98 /**
99 * exposed class names

Callers 1

RCPP_FUN_1Function · 0.80

Calls 2

sizeMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected