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

Function init_Rcpp_routines

src/rcpp_init.cpp:78–86  ·  view source on GitHub ↗

this is called by R_init_Rcpp that is in Module.cpp

Source from the content-addressed store, hash-verified

76
77// this is called by R_init_Rcpp that is in Module.cpp
78void init_Rcpp_routines(DllInfo *info){
79 // Register routines, allocate resources.
80 R_registerRoutines(info,
81 NULL, // .C
82 callEntries, // .Call
83 NULL, // .Fortran
84 extEntries // .External
85 );
86}
87
88void registerFunctions(){
89 using namespace Rcpp;

Callers 1

R_init_RcppFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected