(&self)
| 358 | /// Returns a new Byteset with all bits inverted, leaving self unchanged. |
| 359 | #[inline] |
| 360 | pub fn inverted(&self) -> Self { |
| 361 | Self { |
| 362 | bits: [!self.bits[0], !self.bits[1], !self.bits[2], !self.bits[3]], |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | /// Constructs a Byteset from a slice of bytes. |
| 367 | #[inline] |
no outgoing calls
no test coverage detected