-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRcppExports.cpp
More file actions
36 lines (30 loc) · 1.22 KB
/
RcppExports.cpp
File metadata and controls
36 lines (30 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include <Rcpp.h>
using namespace Rcpp;
#ifdef RCPP_USE_GLOBAL_ROSTREAM
Rcpp::Rostream<true>& Rcpp::Rcout = Rcpp::Rcpp_cout_get();
Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get();
#endif
// cpp_stack
SEXP cpp_stack(List array_list, int along, SEXP fill, bool ovr);
RcppExport SEXP _narray_cpp_stack(SEXP array_listSEXP, SEXP alongSEXP, SEXP fillSEXP, SEXP ovrSEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< List >::type array_list(array_listSEXP);
Rcpp::traits::input_parameter< int >::type along(alongSEXP);
Rcpp::traits::input_parameter< SEXP >::type fill(fillSEXP);
Rcpp::traits::input_parameter< bool >::type ovr(ovrSEXP);
rcpp_result_gen = Rcpp::wrap(cpp_stack(array_list, along, fill, ovr));
return rcpp_result_gen;
END_RCPP
}
static const R_CallMethodDef CallEntries[] = {
{"_narray_cpp_stack", (DL_FUNC) &_narray_cpp_stack, 4},
{NULL, NULL, 0}
};
RcppExport void R_init_narray(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}