| 75 | |
| 76 | template <int RTYPE, bool NA, typename T, bool RHS_NA, typename RHS_T> |
| 77 | inline LogicalVector in( const VectorBase<RTYPE,NA,T>& x, const VectorBase<RTYPE,RHS_NA,RHS_T>& table ){ |
| 78 | typedef VectorBase<RTYPE,RHS_NA,RHS_T> TABLE_T ; |
| 79 | return sugar::In<RTYPE, TABLE_T>(table).get( x.get_ref() ) ; |
| 80 | } |
| 81 | |
| 82 | |
| 83 | } // Rcpp |