| 52 | typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ; |
| 53 | |
| 54 | SelfMatch( const TABLE_T& table ): hash(), result(table.size()) { |
| 55 | std::transform( table.begin(), table.end(), result.begin(), Inserter(hash) ) ; |
| 56 | } |
| 57 | |
| 58 | inline operator IntegerVector() const { return result ; } |
| 59 |