| 136 | typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ; |
| 137 | |
| 138 | Union( const LHS_T& lhs, const RHS_T& rhs) : |
| 139 | result( get_const_begin(lhs), get_const_end(lhs) ) |
| 140 | { |
| 141 | result.insert( get_const_begin(rhs), get_const_end(rhs) ) ; |
| 142 | } |
| 143 | |
| 144 | Vector<RTYPE> get() const { |
| 145 | R_xlen_t n = result.size() ; |
nothing calls this directly
no test coverage detected