thisisnic commented on code in PR #51236: URL: https://github.com/apache/arrow/pull/51236#discussion_r4030897673
########## r/R/array.R: ########## @@ -82,6 +82,11 @@ #' - `$View(type)`: Construct a zero-copy view of this array with the given type. #' - `$Validate()` : Perform any validation checks to determine obvious inconsistencies #' within the array's internal data. This can be an expensive check, potentially `O(length)` +#' - `$export_to_c(array_ptr, schema_ptr)`: Fill an `ArrowArray` and an `ArrowSchema` struct +#' from this array for the Arrow C Data Interface; the pointers come from +#' [allocate_arrow_array()] and [allocate_arrow_schema()]. +#' - `Array$import_from_c(array_ptr, schema_ptr)`: Build an `Array` from structs Review Comment: This last one looks different -- 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]
