| 1080 | } |
| 1081 | |
| 1082 | bool is_unmaterialized_arrow_altrep(SEXP x) { |
| 1083 | return is_arrow_altrep(x) && R_altrep_data1(x) != R_NilValue; |
| 1084 | } |
| 1085 | |
| 1086 | std::shared_ptr<ChunkedArray> vec_to_arrow_altrep_bypass(SEXP x) { |
| 1087 | if (is_unmaterialized_arrow_altrep(x)) { |
no test coverage detected