thisisnic commented on a change in pull request #11915:
URL: https://github.com/apache/arrow/pull/11915#discussion_r770342775
##########
File path: r/vignettes/developers/bindings.Rmd
##########
@@ -0,0 +1,238 @@
+---
+title: "Writing Bindings"
+---
+
+```{r, include=FALSE}
+library(arrow, warn.conflicts = FALSE)
+library(dplyr, warn.conflicts = FALSE)
+```
+
+
+When writing bindings between C++ compute functions and R functions, the aim
is
+to expose the C++ functionality via existing R functions. The syntax and
+functionality should (usually) exactly match that of the existing R functions
+(though with some exceptions) so that users are able to use existing tidyverse
+or base R syntax, or call existing S3 methods on objects, whilst taking
+advantage of the speed and functionality of the underlying arrow package.
Review comment:
Excellent point!
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]