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

Function multimap_string_Rbyte

inst/tinytest/cpp/wrap.cpp:134–140  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

132
133// [[Rcpp::export]]
134RawVector multimap_string_Rbyte(){
135 std::multimap<std::string,Rbyte> m ;
136 m.insert( std::pair<std::string,Rbyte>("b", (Rbyte)0) );
137 m.insert( std::pair<std::string,Rbyte>("a", (Rbyte)1) );
138 m.insert( std::pair<std::string,Rbyte>("c", (Rbyte)2) );
139 return wrap(m);
140}
141
142// [[Rcpp::export]]
143CharacterVector multimap_string_string(){

Callers

nothing calls this directly

Calls 2

wrapFunction · 0.50
insertMethod · 0.45

Tested by

no test coverage detected