This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 7b2e26d Add some do comments to parquet bit_util (#663)
7b2e26d is described below
commit 7b2e26d88aa788da76db4bce8df7b9d57c30cd78
Author: Andrew Lamb <[email protected]>
AuthorDate: Sun Aug 8 06:36:24 2021 -0400
Add some do comments to parquet bit_util (#663)
---
parquet/src/util/bit_util.rs | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/parquet/src/util/bit_util.rs b/parquet/src/util/bit_util.rs
index dafd339..4b34df4 100644
--- a/parquet/src/util/bit_util.rs
+++ b/parquet/src/util/bit_util.rs
@@ -223,7 +223,7 @@ impl BitWriter {
}
}
- /// Extend buffer size
+ /// Extend buffer size by `increment` bytes
#[inline]
pub fn extend(&mut self, increment: usize) {
self.max_bytes += increment;
@@ -231,7 +231,7 @@ impl BitWriter {
self.buffer.extend(extra);
}
- /// Report buffer size
+ /// Report buffer size, in bytes
#[inline]
pub fn capacity(&mut self) -> usize {
self.max_bytes
@@ -332,6 +332,7 @@ impl BitWriter {
self.max_bytes
}
+ /// Writes the entire byte `value` at the byte `offset`
pub fn write_at(&mut self, offset: usize, value: u8) {
self.buffer[offset] = value;
}