(&self, i: usize)
| 502 | /// This doesn't check bounds, the caller must ensure that index < self.len() |
| 503 | #[inline] |
| 504 | pub unsafe fn value_unchecked(&self, i: usize) -> bool { |
| 505 | unsafe { bit_util::get_bit_raw(self.buffer.as_ptr(), i + self.bit_offset) } |
| 506 | } |
| 507 | |
| 508 | /// Returns the packed values of this [`BooleanBuffer`] not including any offset |
| 509 | #[inline] |
no test coverage detected