(&self, other: &Self)
| 105 | |
| 106 | impl PartialEq for BooleanBuffer { |
| 107 | fn eq(&self, other: &Self) -> bool { |
| 108 | if self.bit_len != other.bit_len { |
| 109 | return false; |
| 110 | } |
| 111 | |
| 112 | let lhs = self.bit_chunks().iter_padded(); |
| 113 | let rhs = other.bit_chunks().iter_padded(); |
| 114 | lhs.zip(rhs).all(|(a, b)| a == b) |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | impl BooleanBuffer { |
nothing calls this directly
no test coverage detected