[[Rcpp::export]]
| 171 | |
| 172 | // [[Rcpp::export]] |
| 173 | IntegerVector integer_names_set(){ |
| 174 | IntegerVector y(2) ; |
| 175 | std::vector<std::string> names(2) ; |
| 176 | names[0] = "foo" ; |
| 177 | names[1] = "bar" ; |
| 178 | y.names() = names ; |
| 179 | return y ; |
| 180 | } |
| 181 | |
| 182 | // [[Rcpp::export]] |
| 183 | CharacterVector integer_names_get( IntegerVector y ){ |