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

Function character_create_

inst/tinytest/cpp/Vector.cpp:632–640  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

630
631// [[Rcpp::export]]
632List character_create_(){
633 List output(2);
634 output[0] = CharacterVector::create( "foo", "bar" ) ;
635 output[1] = CharacterVector::create(
636 _["foo"] = "bar",
637 _["bar"] = "foo"
638 ) ;
639 return output ;
640}
641
642// [[Rcpp::export]]
643List complex_binary_sugar(ComplexVector xx, ComplexVector yy){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected