MCPcopy Create free account
hub / github.com/apache/arrow-rs / iter_padded

Method iter_padded

arrow-buffer/src/util/bit_chunk_iterator.rs:327–329  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

325 /// Returns an iterator over chunks of 64 bits, with the remaining bits zero padded to 64-bits
326 #[inline]
327 pub fn iter_padded(&self) -> impl Iterator<Item = u64> + 'a {
328 self.iter().chain(std::iter::once(self.remainder_bits()))
329 }
330}
331
332impl<'a> IntoIterator for BitChunks<'a> {

Callers 8

eqMethod · 0.80
containsMethod · 0.80
compare_opFunction · 0.80
max_booleanFunction · 0.80
true_countMethod · 0.80
has_trueMethod · 0.80
has_falseMethod · 0.80
equal_bitsFunction · 0.80

Calls 2

remainder_bitsMethod · 0.80
iterMethod · 0.45

Tested by

no test coverage detected