| 116 | } |
| 117 | |
| 118 | static int No_NA(SEXP alt) { |
| 119 | if (IsMaterialized(alt)) { |
| 120 | return false; |
| 121 | } |
| 122 | |
| 123 | return GetChunkedArray(alt)->null_count() == 0; |
| 124 | } |
| 125 | |
| 126 | static int Is_sorted(SEXP alt) { return UNKNOWN_SORTEDNESS; } |
| 127 |
nothing calls this directly
no test coverage detected