| 1071 | } |
| 1072 | |
| 1073 | bool is_arrow_altrep(SEXP x) { |
| 1074 | if (ALTREP(x)) { |
| 1075 | SEXP pkg = R_altrep_class_package(x); |
| 1076 | if (pkg == symbols::arrow) return true; |
| 1077 | } |
| 1078 | |
| 1079 | return false; |
| 1080 | } |
| 1081 | |
| 1082 | bool is_unmaterialized_arrow_altrep(SEXP x) { |
| 1083 | return is_arrow_altrep(x) && R_altrep_data1(x) != R_NilValue; |