[[Rcpp::export]]
| 55 | |
| 56 | // [[Rcpp::export]] |
| 57 | CharacterVector test_move_ctor() { |
| 58 | std::vector<String> v = { "test" }; |
| 59 | String t = std::move( v[0] ); |
| 60 | v.push_back( std::move( t ) ); |
| 61 | return CharacterVector( v.begin(), v.end() ); |
| 62 | } |
| 63 | |
| 64 | // [[Rcpp::export]] |
| 65 | String test_move_std_string_ctor() { |