(&mut self, arg: OpArgByte)
| 103 | |
| 104 | #[inline(always)] |
| 105 | pub fn extend(&mut self, arg: OpArgByte) -> OpArg { |
| 106 | self.state = (self.state << 8) | u32::from(arg.0); |
| 107 | self.state.into() |
| 108 | } |
| 109 | |
| 110 | #[inline(always)] |
| 111 | pub const fn reset(&mut self) { |
no outgoing calls
no test coverage detected