klion26 commented on code in PR #8031: URL: https://github.com/apache/arrow-rs/pull/8031#discussion_r2248031469
########## parquet-variant/src/builder.rs: ########## @@ -64,19 +64,55 @@ fn write_offset(buf: &mut Vec<u8>, value: usize, nbytes: u8) { buf.extend_from_slice(&bytes[..nbytes as usize]); } -/// Write little-endian integer to buffer at a specific position -fn write_offset_at_pos(buf: &mut [u8], start_pos: usize, value: usize, nbytes: u8) { - let bytes = value.to_le_bytes(); - buf[start_pos..start_pos + nbytes as usize].copy_from_slice(&bytes[..nbytes as usize]); -} - /// Append `value_size` bytes of given `value` into `dest`. fn append_packed_u32(dest: &mut Vec<u8>, value: u32, value_size: usize) { let n = dest.len() + value_size; dest.extend(value.to_le_bytes()); dest.truncate(n); } +/// An iterator that yields the bytes of a packed u32 iterator. +/// Will yield the first `packed_bytes` bytes of each item in the iterator. +struct PackedU32Iterator<T: Iterator<Item = [u8; 4]>> { + packed_bytes: usize, Review Comment: @jhorstmann IIUC, the benefit of this iterator is `size_hint`, Rust can using the `size_hint` do do better staff, as it knows `the size of the iterator` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org