MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / integer_names_set

Function integer_names_set

inst/tinytest/cpp/Vector.cpp:173–180  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

171
172// [[Rcpp::export]]
173IntegerVector 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]]
183CharacterVector integer_names_get( IntegerVector y ){

Callers

nothing calls this directly

Calls 1

namesMethod · 0.80

Tested by

no test coverage detected