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

Method value

arrow-buffer/src/buffer/boolean.rs:494–497  ·  view source on GitHub ↗
(&self, idx: usize)

Source from the content-addressed store, hash-verified

492 /// Panics if `i >= self.len()`
493 #[inline]
494 pub fn value(&self, idx: usize) -> bool {
495 assert!(idx < self.bit_len);
496 unsafe { self.value_unchecked(idx) }
497 }
498
499 /// Returns the boolean value at index `i`.
500 ///

Callers 1

is_validMethod · 0.45

Calls 1

value_uncheckedMethod · 0.45

Tested by

no test coverage detected