| 30 | public: |
| 31 | typedef typename traits::storage_type<RTYPE>::type STORAGE ; |
| 32 | inline int apply( STORAGE x ) const { |
| 33 | return Rcpp::traits::is_na<RTYPE>(x) ? NA_LOGICAL : (x ? FALSE : TRUE) ; |
| 34 | } |
| 35 | } ; |
| 36 | template <int RTYPE> |
| 37 | class not_<RTYPE,false> { |