| 74 | typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ; |
| 75 | |
| 76 | SetEqual( const LHS_T& lhs, const RHS_T& rhs) : |
| 77 | lhs_set( get_const_begin(lhs), get_const_end(lhs) ), |
| 78 | rhs_set( get_const_begin(rhs), get_const_end(rhs) ) |
| 79 | { |
| 80 | } |
| 81 | |
| 82 | bool get() const { |
| 83 | if( lhs_set.size() != rhs_set.size() ) return false ; |
nothing calls this directly
no test coverage detected