Returns the boolean value at index `i`. Note: This method does not check for nulls and the value is arbitrary if [`is_null`](Self::is_null) returns true for the index. # Safety This doesn't check bounds, the caller must ensure that index < self.len()
(&self, i: usize)
| 220 | /// # Safety |
| 221 | /// This doesn't check bounds, the caller must ensure that index < self.len() |
| 222 | pub unsafe fn value_unchecked(&self, i: usize) -> bool { |
| 223 | unsafe { self.values.value_unchecked(i) } |
| 224 | } |
| 225 | |
| 226 | /// Returns the boolean value at index `i`. |
| 227 | /// |
no outgoing calls
no test coverage detected