[[Rcpp::export]]
| 132 | |
| 133 | // [[Rcpp::export]] |
| 134 | RawVector 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]] |
| 143 | CharacterVector multimap_string_string(){ |