| 38 | public: |
| 39 | |
| 40 | SubsetProxy(LHS_t& lhs_, const RHS_t& rhs_): |
| 41 | lhs(lhs_), rhs(rhs_), lhs_n(lhs.size()), rhs_n(rhs.size()) { |
| 42 | get_indices( traits::identity< traits::int2type<RHS_RTYPE> >() ); |
| 43 | } |
| 44 | |
| 45 | SubsetProxy(const SubsetProxy& other): |
| 46 | lhs(other.lhs), |