(&self)
| 20 | } |
| 21 | |
| 22 | pub fn iter(&self) -> impl Iterator<Item = u32> + use<> { |
| 23 | (self.start..self.start + self.count).step_by(self.step as usize) |
| 24 | } |
| 25 | |
| 26 | pub fn contains(&self, value: u32) -> bool { |
| 27 | let end = self.start + self.count; |
no outgoing calls
no test coverage detected