jorisvandenbossche commented on PR #433:
URL: https://github.com/apache/arrow-nanoarrow/pull/433#issuecomment-2066663609

   It's not super clear what the motivation is of this (it's also a bit hard to 
follow the differences between the different methods you are adding and what 
they actually return)
   
   Why would a user need this? You can already iterate over the chunks of an 
Array, right?
   
   ```python
   for chunk in array.iter_chunks():
       buffers = chunk.buffers
       # or na.c_array(chunk) to get lower level access
       ...
   ```
   
   Or is the problem you don't easily have access to the offset/length of a 
single CArray? (that are the things being used in your example above)
   
   


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