[[Rcpp::export]]
| 69 | |
| 70 | // [[Rcpp::export]] |
| 71 | CharacterVector test_move_assignment() { |
| 72 | std::vector<String> v = { "test", "abc" }; |
| 73 | v[1] = std::move( v[0] ); |
| 74 | return CharacterVector( v.begin(), v.end() ); |
| 75 | } |
| 76 | |
| 77 | // [[Rcpp::export]] |
| 78 | String test_move_std_string_assignment() { |