(&mut self, input: T)
| 61 | } |
| 62 | |
| 63 | pub fn push_input<T: Into<i64>>(&mut self, input: T) { |
| 64 | self.input.push_back(input.into()); |
| 65 | } |
| 66 | |
| 67 | pub fn push_str(&mut self, s: &str) { |
| 68 | for b in s.bytes() { self.push_input(b); } |
no outgoing calls
no test coverage detected