| 142 | } |
| 143 | |
| 144 | Vector<RTYPE> get() const { |
| 145 | R_xlen_t n = result.size() ; |
| 146 | Vector<RTYPE> out = no_init(n) ; |
| 147 | std::copy( result.begin(), result.end(), out.begin() ) ; |
| 148 | return out ; |
| 149 | } |
| 150 | |
| 151 | private: |
| 152 | typedef std::unordered_set<STORAGE> SET ; |