@@ -209,6 +209,27 @@ extern "C" SEXP _cpp11test_row_sums(SEXP x) {
209209 END_CPP11
210210}
211211// matrix.cpp
212+ cpp11::doubles_matrix<> mat_mat_copy_dimnames (cpp11::doubles_matrix<> x);
213+ extern " C" SEXP _cpp11test_mat_mat_copy_dimnames (SEXP x) {
214+ BEGIN_CPP11
215+ return cpp11::as_sexp (mat_mat_copy_dimnames (cpp11::as_cpp<cpp11::decay_t <cpp11::doubles_matrix<>>>(x)));
216+ END_CPP11
217+ }
218+ // matrix.cpp
219+ SEXP mat_sexp_copy_dimnames (cpp11::doubles_matrix<> x);
220+ extern " C" SEXP _cpp11test_mat_sexp_copy_dimnames (SEXP x) {
221+ BEGIN_CPP11
222+ return cpp11::as_sexp (mat_sexp_copy_dimnames (cpp11::as_cpp<cpp11::decay_t <cpp11::doubles_matrix<>>>(x)));
223+ END_CPP11
224+ }
225+ // matrix.cpp
226+ cpp11::doubles_matrix<> mat_mat_create_dimnames ();
227+ extern " C" SEXP _cpp11test_mat_mat_create_dimnames () {
228+ BEGIN_CPP11
229+ return cpp11::as_sexp (mat_mat_create_dimnames ());
230+ END_CPP11
231+ }
232+ // matrix.cpp
212233cpp11::doubles col_sums (cpp11::doubles_matrix<cpp11::by_column> x);
213234extern " C" SEXP _cpp11test_col_sums (SEXP x) {
214235 BEGIN_CPP11
@@ -488,6 +509,9 @@ static const R_CallMethodDef CallEntries[] = {
488509 {" _cpp11test_gibbs_rcpp" , (DL_FUNC) &_cpp11test_gibbs_rcpp, 2 },
489510 {" _cpp11test_gibbs_rcpp2" , (DL_FUNC) &_cpp11test_gibbs_rcpp2, 2 },
490511 {" _cpp11test_grow_" , (DL_FUNC) &_cpp11test_grow_, 1 },
512+ {" _cpp11test_mat_mat_copy_dimnames" , (DL_FUNC) &_cpp11test_mat_mat_copy_dimnames, 1 },
513+ {" _cpp11test_mat_mat_create_dimnames" , (DL_FUNC) &_cpp11test_mat_mat_create_dimnames, 0 },
514+ {" _cpp11test_mat_sexp_copy_dimnames" , (DL_FUNC) &_cpp11test_mat_sexp_copy_dimnames, 1 },
491515 {" _cpp11test_my_message" , (DL_FUNC) &_cpp11test_my_message, 2 },
492516 {" _cpp11test_my_message_n1" , (DL_FUNC) &_cpp11test_my_message_n1, 1 },
493517 {" _cpp11test_my_message_n1fmt" , (DL_FUNC) &_cpp11test_my_message_n1fmt, 1 },
0 commit comments