(&self)
| 189 | |
| 190 | impl ShortSegment { |
| 191 | pub fn len(&self) -> usize { |
| 192 | self.inner.len() |
| 193 | } |
| 194 | |
| 195 | pub fn modify_byte_at(&mut self, pos: usize, f: impl FnOnce(u8) -> u8) { |
| 196 | self.inner.modify_byte_at(pos, f); |
no outgoing calls
no test coverage detected