WillAyd commented on code in PR #276: URL: https://github.com/apache/arrow-nanoarrow/pull/276#discussion_r1296223381
########## src/nanoarrow/nanoarrow.h: ########## @@ -664,6 +664,10 @@ static inline ArrowErrorCode ArrowBufferAppendBufferView(struct ArrowBuffer* buf /// \brief Extract a boolean value from a bitmap static inline int8_t ArrowBitGet(const uint8_t* bits, int64_t i); +/// \brief Extract boolean values from a range in a bitmap +static inline void ArrowBitsGet(const uint8_t* bits, int64_t start_offset, int64_t length, Review Comment: That's a much simpler way of expressing this than I was putting out there -- 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]
