[[Rcpp::export]]
| 738 | |
| 739 | // [[Rcpp::export]] |
| 740 | CharacterVector CharacterVector_test_const_proxy(const CharacterVector x){ |
| 741 | CharacterVector out( x.size() ) ; |
| 742 | for( int i=0; i<x.size(); i++){ |
| 743 | out[i] = x[i] ; |
| 744 | } |
| 745 | return out ; |
| 746 | } |
| 747 | |
| 748 | // [[Rcpp::export]] |
| 749 | NumericVector sort_numeric(NumericVector x) { |