[[Rcpp::export]]
| 123 | |
| 124 | // [[Rcpp::export]] |
| 125 | LogicalVector multimap_string_bool(){ |
| 126 | std::multimap<std::string,bool> m ; |
| 127 | m.insert( std::pair<std::string,bool>("b", true ) ) ; |
| 128 | m.insert( std::pair<std::string,bool>("a", false) ) ; |
| 129 | m.insert( std::pair<std::string,bool>("c", true ) ) ; |
| 130 | return wrap(m); |
| 131 | } |
| 132 | |
| 133 | // [[Rcpp::export]] |
| 134 | RawVector multimap_string_Rbyte(){ |