paleolimbot commented on pull request #12324: URL: https://github.com/apache/arrow/pull/12324#issuecomment-1031494704
That's a great point! `c()` is a little funky but I added a method that brings it more in line with what a user would expect than the default behaviour that you demoed above: ``` r # remotes::install_github("apache/arrow/r#12324") library(arrow, warn.conflicts = FALSE) x <- Array$create(c(1, 2, 3)) y <- Array$create(c(4, 5, 6)) c(x, y) #> Array #> <double> #> [ #> 1, #> 2, #> 3, #> 4, #> 5, #> 6 #> ] ``` <sup>Created on 2022-02-07 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1)</sup> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org