(&mut self, word: u32)
| 66 | } |
| 67 | |
| 68 | pub fn push_u32_le(&mut self, word: u32) { |
| 69 | self.bytes.extend_from_slice(&word.to_le_bytes()); |
| 70 | } |
| 71 | |
| 72 | pub fn push_u64_le(&mut self, word: u64) { |
| 73 | self.bytes.extend_from_slice(&word.to_le_bytes()); |
no outgoing calls
no test coverage detected