@@ -173,18 +173,34 @@ extern "C" SEXP _cpp11armadillotest_row_fun1_(SEXP x, SEXP y) {
173
173
return cpp11::as_sexp (row_fun1_ (cpp11::as_cpp<cpp11::decay_t <const doubles&>>(x), cpp11::as_cpp<cpp11::decay_t <const doubles&>>(y)));
174
174
END_CPP11
175
175
}
176
+ // 08_official_documentation_adapted.cpp
177
+ doubles_matrix<> cube_fun1_ (const doubles_matrix<>& a, const doubles_matrix<>& b);
178
+ extern " C" SEXP _cpp11armadillotest_cube_fun1_ (SEXP a, SEXP b) {
179
+ BEGIN_CPP11
180
+ return cpp11::as_sexp (cube_fun1_ (cpp11::as_cpp<cpp11::decay_t <const doubles_matrix<>&>>(a), cpp11::as_cpp<cpp11::decay_t <const doubles_matrix<>&>>(b)));
181
+ END_CPP11
182
+ }
183
+ // 08_official_documentation_adapted.cpp
184
+ doubles_matrix<> field_fun1_ (const doubles_matrix<>& a, const doubles_matrix<>& b);
185
+ extern " C" SEXP _cpp11armadillotest_field_fun1_ (SEXP a, SEXP b) {
186
+ BEGIN_CPP11
187
+ return cpp11::as_sexp (field_fun1_ (cpp11::as_cpp<cpp11::decay_t <const doubles_matrix<>&>>(a), cpp11::as_cpp<cpp11::decay_t <const doubles_matrix<>&>>(b)));
188
+ END_CPP11
189
+ }
176
190
177
191
extern " C" {
178
192
static const R_CallMethodDef CallEntries[] = {
179
193
{" _cpp11armadillotest_capm" , (DL_FUNC) &_cpp11armadillotest_capm, 3 },
180
194
{" _cpp11armadillotest_chol_mat" , (DL_FUNC) &_cpp11armadillotest_chol_mat, 2 },
181
195
{" _cpp11armadillotest_column_fun1_" , (DL_FUNC) &_cpp11armadillotest_column_fun1_, 2 },
196
+ {" _cpp11armadillotest_cube_fun1_" , (DL_FUNC) &_cpp11armadillotest_cube_fun1_, 2 },
182
197
{" _cpp11armadillotest_eigen_gen_dbl_complex_wrapper" , (DL_FUNC) &_cpp11armadillotest_eigen_gen_dbl_complex_wrapper, 1 },
183
198
{" _cpp11armadillotest_eigen_gen_mat" , (DL_FUNC) &_cpp11armadillotest_eigen_gen_mat, 1 },
184
199
{" _cpp11armadillotest_eigen_gen_mat_complex_wrapper" , (DL_FUNC) &_cpp11armadillotest_eigen_gen_mat_complex_wrapper, 1 },
185
200
{" _cpp11armadillotest_eigen_gen_no_wrapper" , (DL_FUNC) &_cpp11armadillotest_eigen_gen_no_wrapper, 1 },
186
201
{" _cpp11armadillotest_eigen_sym_dbl" , (DL_FUNC) &_cpp11armadillotest_eigen_sym_dbl, 1 },
187
202
{" _cpp11armadillotest_eigen_sym_mat" , (DL_FUNC) &_cpp11armadillotest_eigen_sym_mat, 1 },
203
+ {" _cpp11armadillotest_field_fun1_" , (DL_FUNC) &_cpp11armadillotest_field_fun1_, 2 },
188
204
{" _cpp11armadillotest_matrix_fun1_" , (DL_FUNC) &_cpp11armadillotest_matrix_fun1_, 1 },
189
205
{" _cpp11armadillotest_matrix_fun2_" , (DL_FUNC) &_cpp11armadillotest_matrix_fun2_, 1 },
190
206
{" _cpp11armadillotest_ols_dbl" , (DL_FUNC) &_cpp11armadillotest_ols_dbl, 2 },
0 commit comments