(self, other: Self)
| 345 | /// The bitwise or (`|`) of the bits in `self` and `other`. |
| 346 | #[must_use] |
| 347 | fn union(self, other: Self) -> Self { |
| 348 | Self::from_bits_retain(self.bits() | other.bits()) |
| 349 | } |
| 350 | |
| 351 | /// The intersection of `self` with the complement of `other` (`&!`). |
| 352 | /// |