| 40 | return is_atomic(x) && TYPEOF(x) == LGLSXP; |
| 41 | } |
| 42 | template <> inline bool is__simple<std::string>(SEXP x) { |
| 43 | return is_atomic(x) && TYPEOF(x) == STRSXP; |
| 44 | } |
| 45 | template <> inline bool is__simple<String>(SEXP x) { |
| 46 | return is_atomic(x) && TYPEOF(x) == STRSXP; |
| 47 | } |
nothing calls this directly
no test coverage detected