@@ -15,172 +15,3 @@ BEGIN_RCPP
1515 return __result;
1616END_RCPP
1717}
18- // test_hooked_plus_scalar
19- Rcpp::NumericVector test_hooked_plus_scalar (std::vector< int > v1, double s);
20- RcppExport SEXP RcppHoney_test_hooked_plus_scalar (SEXP v1SEXP, SEXP sSEXP ) {
21- BEGIN_RCPP
22- Rcpp::RObject __result;
23- Rcpp::RNGScope __rngScope;
24- Rcpp::traits::input_parameter< std::vector< int > >::type v1 (v1SEXP);
25- Rcpp::traits::input_parameter< double >::type s (sSEXP );
26- __result = Rcpp::wrap (test_hooked_plus_scalar (v1, s));
27- return __result;
28- END_RCPP
29- }
30- // test_scalar_plus_hooked
31- Rcpp::NumericVector test_scalar_plus_hooked (double s, std::vector< int > v1);
32- RcppExport SEXP RcppHoney_test_scalar_plus_hooked (SEXP sSEXP , SEXP v1SEXP) {
33- BEGIN_RCPP
34- Rcpp::RObject __result;
35- Rcpp::RNGScope __rngScope;
36- Rcpp::traits::input_parameter< double >::type s (sSEXP );
37- Rcpp::traits::input_parameter< std::vector< int > >::type v1 (v1SEXP);
38- __result = Rcpp::wrap (test_scalar_plus_hooked (s, v1));
39- return __result;
40- END_RCPP
41- }
42- // test_hooked_plus_hooked
43- Rcpp::NumericVector test_hooked_plus_hooked (std::vector< int > v1, std::vector< int > v2);
44- RcppExport SEXP RcppHoney_test_hooked_plus_hooked (SEXP v1SEXP, SEXP v2SEXP) {
45- BEGIN_RCPP
46- Rcpp::RObject __result;
47- Rcpp::RNGScope __rngScope;
48- Rcpp::traits::input_parameter< std::vector< int > >::type v1 (v1SEXP);
49- Rcpp::traits::input_parameter< std::vector< int > >::type v2 (v2SEXP);
50- __result = Rcpp::wrap (test_hooked_plus_hooked (v1, v2));
51- return __result;
52- END_RCPP
53- }
54- // test_hooked_plus_other_hooked
55- Rcpp::NumericVector test_hooked_plus_other_hooked (std::vector< int > v1, Rcpp::NumericVector v2);
56- RcppExport SEXP RcppHoney_test_hooked_plus_other_hooked (SEXP v1SEXP, SEXP v2SEXP) {
57- BEGIN_RCPP
58- Rcpp::RObject __result;
59- Rcpp::RNGScope __rngScope;
60- Rcpp::traits::input_parameter< std::vector< int > >::type v1 (v1SEXP);
61- Rcpp::traits::input_parameter< Rcpp::NumericVector >::type v2 (v2SEXP);
62- __result = Rcpp::wrap (test_hooked_plus_other_hooked (v1, v2));
63- return __result;
64- END_RCPP
65- }
66- // test_other_hooked_plus_hooked
67- Rcpp::NumericVector test_other_hooked_plus_hooked (Rcpp::NumericVector v1, std::vector< int > v2);
68- RcppExport SEXP RcppHoney_test_other_hooked_plus_hooked (SEXP v1SEXP, SEXP v2SEXP) {
69- BEGIN_RCPP
70- Rcpp::RObject __result;
71- Rcpp::RNGScope __rngScope;
72- Rcpp::traits::input_parameter< Rcpp::NumericVector >::type v1 (v1SEXP);
73- Rcpp::traits::input_parameter< std::vector< int > >::type v2 (v2SEXP);
74- __result = Rcpp::wrap (test_other_hooked_plus_hooked (v1, v2));
75- return __result;
76- END_RCPP
77- }
78- // test_operand_plus_scalar
79- Rcpp::NumericVector test_operand_plus_scalar (std::vector< int > v1, std::vector< int > v2, double s);
80- RcppExport SEXP RcppHoney_test_operand_plus_scalar (SEXP v1SEXP, SEXP v2SEXP, SEXP sSEXP ) {
81- BEGIN_RCPP
82- Rcpp::RObject __result;
83- Rcpp::RNGScope __rngScope;
84- Rcpp::traits::input_parameter< std::vector< int > >::type v1 (v1SEXP);
85- Rcpp::traits::input_parameter< std::vector< int > >::type v2 (v2SEXP);
86- Rcpp::traits::input_parameter< double >::type s (sSEXP );
87- __result = Rcpp::wrap (test_operand_plus_scalar (v1, v2, s));
88- return __result;
89- END_RCPP
90- }
91- // test_scalar_plus_operand
92- Rcpp::NumericVector test_scalar_plus_operand (double s, std::vector< int > v1, std::vector< int > v2);
93- RcppExport SEXP RcppHoney_test_scalar_plus_operand (SEXP sSEXP , SEXP v1SEXP, SEXP v2SEXP) {
94- BEGIN_RCPP
95- Rcpp::RObject __result;
96- Rcpp::RNGScope __rngScope;
97- Rcpp::traits::input_parameter< double >::type s (sSEXP );
98- Rcpp::traits::input_parameter< std::vector< int > >::type v1 (v1SEXP);
99- Rcpp::traits::input_parameter< std::vector< int > >::type v2 (v2SEXP);
100- __result = Rcpp::wrap (test_scalar_plus_operand (s, v1, v2));
101- return __result;
102- END_RCPP
103- }
104- // test_operand_plus_hooked
105- Rcpp::NumericVector test_operand_plus_hooked (std::vector< int > v1, std::vector< int > v2, Rcpp::NumericVector v3);
106- RcppExport SEXP RcppHoney_test_operand_plus_hooked (SEXP v1SEXP, SEXP v2SEXP, SEXP v3SEXP) {
107- BEGIN_RCPP
108- Rcpp::RObject __result;
109- Rcpp::RNGScope __rngScope;
110- Rcpp::traits::input_parameter< std::vector< int > >::type v1 (v1SEXP);
111- Rcpp::traits::input_parameter< std::vector< int > >::type v2 (v2SEXP);
112- Rcpp::traits::input_parameter< Rcpp::NumericVector >::type v3 (v3SEXP);
113- __result = Rcpp::wrap (test_operand_plus_hooked (v1, v2, v3));
114- return __result;
115- END_RCPP
116- }
117- // test_hooked_plus_operand
118- Rcpp::NumericVector test_hooked_plus_operand (Rcpp::NumericVector v1, std::vector< int > v2, std::vector< int > v3);
119- RcppExport SEXP RcppHoney_test_hooked_plus_operand (SEXP v1SEXP, SEXP v2SEXP, SEXP v3SEXP) {
120- BEGIN_RCPP
121- Rcpp::RObject __result;
122- Rcpp::RNGScope __rngScope;
123- Rcpp::traits::input_parameter< Rcpp::NumericVector >::type v1 (v1SEXP);
124- Rcpp::traits::input_parameter< std::vector< int > >::type v2 (v2SEXP);
125- Rcpp::traits::input_parameter< std::vector< int > >::type v3 (v3SEXP);
126- __result = Rcpp::wrap (test_hooked_plus_operand (v1, v2, v3));
127- return __result;
128- END_RCPP
129- }
130- // test_operand_plus_operand
131- Rcpp::NumericVector test_operand_plus_operand (double s, std::vector< int > v1, std::vector< int > v2);
132- RcppExport SEXP RcppHoney_test_operand_plus_operand (SEXP sSEXP , SEXP v1SEXP, SEXP v2SEXP) {
133- BEGIN_RCPP
134- Rcpp::RObject __result;
135- Rcpp::RNGScope __rngScope;
136- Rcpp::traits::input_parameter< double >::type s (sSEXP );
137- Rcpp::traits::input_parameter< std::vector< int > >::type v1 (v1SEXP);
138- Rcpp::traits::input_parameter< std::vector< int > >::type v2 (v2SEXP);
139- __result = Rcpp::wrap (test_operand_plus_operand (s, v1, v2));
140- return __result;
141- END_RCPP
142- }
143- // test_unary_operator_hooked
144- Rcpp::NumericVector test_unary_operator_hooked (std::vector< int > v);
145- RcppExport SEXP RcppHoney_test_unary_operator_hooked (SEXP vSEXP) {
146- BEGIN_RCPP
147- Rcpp::RObject __result;
148- Rcpp::RNGScope __rngScope;
149- Rcpp::traits::input_parameter< std::vector< int > >::type v (vSEXP);
150- __result = Rcpp::wrap (test_unary_operator_hooked (v));
151- return __result;
152- END_RCPP
153- }
154- // test_unary_operator_operand
155- Rcpp::NumericVector test_unary_operator_operand (std::vector< int > v);
156- RcppExport SEXP RcppHoney_test_unary_operator_operand (SEXP vSEXP) {
157- BEGIN_RCPP
158- Rcpp::RObject __result;
159- Rcpp::RNGScope __rngScope;
160- Rcpp::traits::input_parameter< std::vector< int > >::type v (vSEXP);
161- __result = Rcpp::wrap (test_unary_operator_operand (v));
162- return __result;
163- END_RCPP
164- }
165- // test_unary_function_hooked
166- Rcpp::NumericVector test_unary_function_hooked (std::vector< int > v);
167- RcppExport SEXP RcppHoney_test_unary_function_hooked (SEXP vSEXP) {
168- BEGIN_RCPP
169- Rcpp::RObject __result;
170- Rcpp::RNGScope __rngScope;
171- Rcpp::traits::input_parameter< std::vector< int > >::type v (vSEXP);
172- __result = Rcpp::wrap (test_unary_function_hooked (v));
173- return __result;
174- END_RCPP
175- }
176- // test_unary_function_operand
177- Rcpp::NumericVector test_unary_function_operand (std::vector< int > v);
178- RcppExport SEXP RcppHoney_test_unary_function_operand (SEXP vSEXP) {
179- BEGIN_RCPP
180- Rcpp::RObject __result;
181- Rcpp::RNGScope __rngScope;
182- Rcpp::traits::input_parameter< std::vector< int > >::type v (vSEXP);
183- __result = Rcpp::wrap (test_unary_function_operand (v));
184- return __result;
185- END_RCPP
186- }
0 commit comments