[[Rcpp::export]]
| 114 | |
| 115 | // [[Rcpp::export]] |
| 116 | NumericVector multimap_string_double(){ |
| 117 | std::multimap<std::string,double> m ; |
| 118 | m.insert( std::pair<std::string,double>("b", 100) ); |
| 119 | m.insert( std::pair<std::string,double>("a", 200) ); |
| 120 | m.insert( std::pair<std::string,double>("c", 300) ); |
| 121 | return wrap(m); |
| 122 | } |
| 123 | |
| 124 | // [[Rcpp::export]] |
| 125 | LogicalVector multimap_string_bool(){ |