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

Function RCPP_MODULE

inst/tinytest/testRcppModule/src/rcpp_module.cpp:58–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56
57
58RCPP_MODULE(RcppModuleWorld) {
59 using namespace Rcpp;
60
61 function("bar" , &bar );
62 function("foo" , &foo );
63 function("bla" , &bla );
64 function("bla1" , &bla1);
65 function("bla2" , &bla2);
66
67 class_<RcppModuleWorld>( "RcppModuleWorld")
68 .default_constructor()
69 .method("greet", &RcppModuleWorld::greet)
70 .method("set", &RcppModuleWorld::set)
71 ;
72}
73
74

Callers

nothing calls this directly

Calls 1

functionFunction · 0.85

Tested by

no test coverage detected