orgadish commented on code in PR #38144:
URL: https://github.com/apache/arrow/pull/38144#discussion_r1357748075
##########
r/R/type.R:
##########
@@ -665,13 +694,16 @@ list_of <- function(type) list__(type)
LargeListType <- R6Class("LargeListType",
inherit = NestedType,
public = list(
- code = function() {
- call2("large_list_of", self$value_type$code())
+ code = function(explicit_pkg_name = FALSE) {
+ call2(private$call_name(), self$value_type$code(explicit_pkg_name), .ns
= get_pkg_ns(explicit_pkg_name))
Review Comment:
1. Great call on using `if(namespace) "arrow"` (or `getPackageName()`) which
implies `else NULL`... I always forget that! :+1:
2. I like `namespace` :+1:
--
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]