(&self)
| 501 | /// ``` |
| 502 | #[inline] |
| 503 | pub fn iter(&self) -> Iter<'_, T> { |
| 504 | Iter { |
| 505 | bitset: self, |
| 506 | word: 0, |
| 507 | sub: None, |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | /// Returns an iterator over the words of this bit-set or the in-memory |
| 512 | /// representation of the bit set. |
no outgoing calls
no test coverage detected