Returns a new [`Buffer`] containing the sliced contents of this [`BooleanBuffer`] Equivalent to `self.buffer.bit_slice(self.offset, self.len)`
(&self)
| 528 | /// |
| 529 | /// Equivalent to `self.buffer.bit_slice(self.offset, self.len)` |
| 530 | pub fn sliced(&self) -> Buffer { |
| 531 | self.buffer.bit_slice(self.bit_offset, self.bit_len) |
| 532 | } |
| 533 | |
| 534 | /// Returns true if this [`BooleanBuffer`] is equal to `other`, using pointer comparisons |
| 535 | /// to determine buffer equality. This is cheaper than `PartialEq::eq` but may |
no test coverage detected