Go to the documentation of this file.
2 #define LOOPMACRO_C(name) \
3 SEXP name##__loop(SEXP n_, SEXP a, SEXP b){ \
4 int n = INTEGER(n_)[0] ; \
5 SEXP res = R_NilValue ; \
6 for( int i=0; i<n; i++){ \
12 #define LOOPMACRO_CPP(name) RcppExport LOOPMACRO_C(name)