@@ -173,6 +173,20 @@ extern "C" SEXP _cpp11test_cpp11_insert_(SEXP num_sxp) {
173173 return cpp11::as_sexp (cpp11_insert_ (cpp11::as_cpp<cpp11::decay_t <SEXP>>(num_sxp)));
174174 END_CPP11
175175}
176+ // map.cpp
177+ SEXP ordered_map_to_list_ (cpp11::doubles x);
178+ extern " C" SEXP _cpp11test_ordered_map_to_list_ (SEXP x) {
179+ BEGIN_CPP11
180+ return cpp11::as_sexp (ordered_map_to_list_ (cpp11::as_cpp<cpp11::decay_t <cpp11::doubles>>(x)));
181+ END_CPP11
182+ }
183+ // map.cpp
184+ SEXP unordered_map_to_list_ (cpp11::doubles x);
185+ extern " C" SEXP _cpp11test_unordered_map_to_list_ (SEXP x) {
186+ BEGIN_CPP11
187+ return cpp11::as_sexp (unordered_map_to_list_ (cpp11::as_cpp<cpp11::decay_t <cpp11::doubles>>(x)));
188+ END_CPP11
189+ }
176190// matrix.cpp
177191SEXP gibbs_cpp (int N, int thin);
178192extern " C" SEXP _cpp11test_gibbs_cpp (SEXP N, SEXP thin) {
@@ -209,6 +223,27 @@ extern "C" SEXP _cpp11test_row_sums(SEXP x) {
209223 END_CPP11
210224}
211225// matrix.cpp
226+ cpp11::doubles_matrix<> mat_mat_copy_dimnames (cpp11::doubles_matrix<> x);
227+ extern " C" SEXP _cpp11test_mat_mat_copy_dimnames (SEXP x) {
228+ BEGIN_CPP11
229+ return cpp11::as_sexp (mat_mat_copy_dimnames (cpp11::as_cpp<cpp11::decay_t <cpp11::doubles_matrix<>>>(x)));
230+ END_CPP11
231+ }
232+ // matrix.cpp
233+ SEXP mat_sexp_copy_dimnames (cpp11::doubles_matrix<> x);
234+ extern " C" SEXP _cpp11test_mat_sexp_copy_dimnames (SEXP x) {
235+ BEGIN_CPP11
236+ return cpp11::as_sexp (mat_sexp_copy_dimnames (cpp11::as_cpp<cpp11::decay_t <cpp11::doubles_matrix<>>>(x)));
237+ END_CPP11
238+ }
239+ // matrix.cpp
240+ cpp11::doubles_matrix<> mat_mat_create_dimnames ();
241+ extern " C" SEXP _cpp11test_mat_mat_create_dimnames () {
242+ BEGIN_CPP11
243+ return cpp11::as_sexp (mat_mat_create_dimnames ());
244+ END_CPP11
245+ }
246+ // matrix.cpp
212247cpp11::doubles col_sums (cpp11::doubles_matrix<cpp11::by_column> x);
213248extern " C" SEXP _cpp11test_col_sums (SEXP x) {
214249 BEGIN_CPP11
@@ -502,6 +537,9 @@ static const R_CallMethodDef CallEntries[] = {
502537 {" _cpp11test_gibbs_rcpp" , (DL_FUNC) &_cpp11test_gibbs_rcpp, 2 },
503538 {" _cpp11test_gibbs_rcpp2" , (DL_FUNC) &_cpp11test_gibbs_rcpp2, 2 },
504539 {" _cpp11test_grow_" , (DL_FUNC) &_cpp11test_grow_, 1 },
540+ {" _cpp11test_mat_mat_copy_dimnames" , (DL_FUNC) &_cpp11test_mat_mat_copy_dimnames, 1 },
541+ {" _cpp11test_mat_mat_create_dimnames" , (DL_FUNC) &_cpp11test_mat_mat_create_dimnames, 0 },
542+ {" _cpp11test_mat_sexp_copy_dimnames" , (DL_FUNC) &_cpp11test_mat_sexp_copy_dimnames, 1 },
505543 {" _cpp11test_my_message" , (DL_FUNC) &_cpp11test_my_message, 2 },
506544 {" _cpp11test_my_message_n1" , (DL_FUNC) &_cpp11test_my_message_n1, 1 },
507545 {" _cpp11test_my_message_n1fmt" , (DL_FUNC) &_cpp11test_my_message_n1fmt, 1 },
@@ -516,6 +554,7 @@ static const R_CallMethodDef CallEntries[] = {
516554 {" _cpp11test_my_warning_n2fmt" , (DL_FUNC) &_cpp11test_my_warning_n2fmt, 2 },
517555 {" _cpp11test_nullable_extptr_1" , (DL_FUNC) &_cpp11test_nullable_extptr_1, 0 },
518556 {" _cpp11test_nullable_extptr_2" , (DL_FUNC) &_cpp11test_nullable_extptr_2, 0 },
557+ {" _cpp11test_ordered_map_to_list_" , (DL_FUNC) &_cpp11test_ordered_map_to_list_, 1 },
519558 {" _cpp11test_protect_many_" , (DL_FUNC) &_cpp11test_protect_many_, 1 },
520559 {" _cpp11test_protect_many_cpp11_" , (DL_FUNC) &_cpp11test_protect_many_cpp11_, 1 },
521560 {" _cpp11test_protect_many_preserve_" , (DL_FUNC) &_cpp11test_protect_many_preserve_, 1 },
@@ -549,6 +588,7 @@ static const R_CallMethodDef CallEntries[] = {
549588 {" _cpp11test_sum_int_foreach_" , (DL_FUNC) &_cpp11test_sum_int_foreach_, 1 },
550589 {" _cpp11test_test_destruction_inner" , (DL_FUNC) &_cpp11test_test_destruction_inner, 0 },
551590 {" _cpp11test_test_destruction_outer" , (DL_FUNC) &_cpp11test_test_destruction_outer, 0 },
591+ {" _cpp11test_unordered_map_to_list_" , (DL_FUNC) &_cpp11test_unordered_map_to_list_, 1 },
552592 {" _cpp11test_upper_bound" , (DL_FUNC) &_cpp11test_upper_bound, 2 },
553593 {" run_testthat_tests" , (DL_FUNC) &run_testthat_tests, 1 },
554594 {NULL , NULL , 0 }
0 commit comments