dragosmg opened a new pull request #12447:
URL: https://github.com/apache/arrow/pull/12447


   This would allow for more consistent syntax when extracting the type of an 
expression.
   A block like this:
   ```r
   if (inherits(x, "Expression")) { 
   class <- x$type()$ToString() 
   } else { 
   class <- type(x)$ToString() 
   }
   ```
   
   would be simplified to
   
   ```r
   class <- type(x)$ToString()
   ```


-- 
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]


Reply via email to