| 70 | } |
| 71 | template <int RTYPE, bool NA, typename T> |
| 72 | inline Vector<RTYPE> sort_unique( const VectorBase<RTYPE,NA,T>& t , bool decreasing = false){ |
| 73 | return unique<RTYPE,NA,T>( t ).sort(decreasing) ; |
| 74 | } |
| 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 ){ |
no outgoing calls
no test coverage detected