apache / apache/arrow-nanoarrow
[R] nanoarrow as an interchange class?
Open
- Dominant language
- C
- Stars
- 249
- Forks
- 68
- Avg merge
- 2d 21h
- Merged PRs (30d)
- 11
Description
nanoarrow looks very promising for converting between classes that use the Arrow format internally.
For such applications, I imagine that if we define a following default S3 method, we can omit the method definition to each class by defining only the conversion from nanoarrow.
```r
as_foo.default <- function(x) {
as_foo.nanoarrow_array_stream(as_nanoarrow_array_stream(x))
}
```
Is this a good idea? (Although of course it may need to be a later version of nanoarrow)
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.