(&self, other: Self)
| 77 | } |
| 78 | |
| 79 | fn and_not(&self, other: Self) -> Self { |
| 80 | let mut new = Self([0; N]); |
| 81 | for i in 0..N { |
| 82 | new.0[i] = self.0[i] & !other.0[i]; |
| 83 | } |
| 84 | new |
| 85 | } |
| 86 | |
| 87 | type Iter = ArrayIter<N>; |
| 88 | fn iter(self) -> Self::Iter { |
no outgoing calls
no test coverage detected