[[Rcpp::export]]
| 141 | |
| 142 | // [[Rcpp::export]] |
| 143 | CharacterVector multimap_string_string(){ |
| 144 | std::multimap<std::string,std::string> m ; |
| 145 | m.insert( std::pair<std::string,std::string>( "b", "foo" ) ) ; |
| 146 | m.insert( std::pair<std::string,std::string>( "a", "bar" ) ) ; |
| 147 | m.insert( std::pair<std::string,std::string>( "c", "bling") ) ; |
| 148 | return wrap(m); |
| 149 | } |
| 150 | |
| 151 | // [[Rcpp::export]] |
| 152 | List multimap_string_generic(){ |