[[Rcpp::export]]
| 113 | |
| 114 | // [[Rcpp::export]] |
| 115 | std::set<Rbyte> stdsetraw(){ |
| 116 | std::set<Rbyte> bs ; |
| 117 | bs.insert( (Rbyte)0 ) ; |
| 118 | bs.insert( (Rbyte)1 ) ; |
| 119 | bs.insert( (Rbyte)0 ) ; |
| 120 | return bs ; |
| 121 | } |
| 122 | |
| 123 | // [[Rcpp::export]] |
| 124 | std::set<std::string> stdsetstring(){ |