[[Rcpp::export]]
| 105 | |
| 106 | // [[Rcpp::export]] |
| 107 | IntegerVector multimap_string_int(){ |
| 108 | std::multimap< std::string, int > m; |
| 109 | m.insert( std::pair<std::string,int>("b", 100)); |
| 110 | m.insert( std::pair<std::string,int>("a", 200)); |
| 111 | m.insert( std::pair<std::string,int>("c", 300)); |
| 112 | return wrap(m); |
| 113 | } |
| 114 | |
| 115 | // [[Rcpp::export]] |
| 116 | NumericVector multimap_string_double(){ |