tustvold commented on code in PR #6534:
URL: https://github.com/apache/arrow-rs/pull/6534#discussion_r1795174120
##########
arrow-buffer/src/builder/null.rs:
##########
@@ -95,6 +95,17 @@ impl NullBufferBuilder {
self.bitmap_builder.as_mut().unwrap().append_n(n, false);
}
+ /// Appends `n` `true`s into the builder
+ /// to indicate that these `n` items are not null.
+ #[inline]
+ pub fn append_n_non_null(&mut self, n: usize) {
Review Comment:
I believe this method already exists a few lines up
--
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]