forked from jonclayden/RcppArray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRcppExports.cpp
More file actions
99 lines (93 loc) · 2.83 KB
/
RcppExports.cpp
File metadata and controls
99 lines (93 loc) · 2.83 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include "../inst/include/RcppArray.h"
#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
// intArray
void intArray(RObject x);
RcppExport SEXP _RcppArray_intArray(SEXP xSEXP) {
BEGIN_RCPP
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< RObject >::type x(xSEXP);
intArray(x);
return R_
7A46
NilValue;
END_RCPP
}
// unsignedArray
void unsignedArray(RObject x);
RcppExport SEXP _RcppArray_unsignedArray(SEXP xSEXP) {
BEGIN_RCPP
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< RObject >::type x(xSEXP);
unsignedArray(x);
return R_NilValue;
END_RCPP
}
// doubleArray
void doubleArray(RObject x);
RcppExport SEXP _RcppArray_doubleArray(SEXP xSEXP) {
BEGIN_RCPP
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< RObject >::type x(xSEXP);
doubleArray(x);
return R_NilValue;
END_RCPP
}
// stringArray
void stringArray(RObject x);
RcppExport SEXP _RcppArray_stringArray(SEXP xSEXP) {
BEGIN_RCPP
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< RObject >::type x(xSEXP);
stringArray(x);
return R_NilValue;
END_RCPP
}
// int64Array
void int64Array(RObject x);
RcppExport SEXP _RcppArray_int64Array(SEXP xSEXP) {
BEGIN_RCPP
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< RObject >::type x(xSEXP);
int64Array(x);
return R_NilValue;
END_RCPP
}
// intDoubleString
void intDoubleString(RObject x);
RcppExport SEXP _RcppArray_intDoubleString(SEXP xSEXP) {
BEGIN_RCPP
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< RObject >::type x(xSEXP);
intDoubleString(x);
return R_NilValue;
END_RCPP
}
// wrapTuple
SEXP wrapTuple();
RcppExport SEXP _RcppArray_wrapTuple() {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = Rcpp::wrap(wrapTuple());
return rcpp_result_gen;
END_RCPP
}
static const R_CallMethodDef CallEntries[] = {
{"_RcppArray_intArray", (DL_FUNC) &_RcppArray_intArray, 1},
{"_RcppArray_unsignedArray", (DL_FUNC) &_RcppArray_unsignedArray, 1},
{"_RcppArray_doubleArray", (DL_FUNC) &_RcppArray_doubleArray, 1},
{"_RcppArray_stringArray", (DL_FUNC) &_RcppArray_stringArray, 1},
{"_RcppArray_int64Array", (DL_FUNC) &_RcppArray_int64Array, 1},
{"_RcppArray_intDoubleString", (DL_FUNC) &_RcppArray_intDoubleString, 1},
{"_RcppArray_wrapTuple", (DL_FUNC) &_RcppArray_wrapTuple, 0},
{NULL, NULL, 0}
};
RcppExport void R_init_RcppArray(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}