(&mut self, chars: Vec<u8>)
| 133 | } |
| 134 | |
| 135 | pub fn append_uchar_vars(&mut self, chars: Vec<u8>) { |
| 136 | for char in chars { |
| 137 | self.append_uchar_var(char); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | pub fn append_char_array(&mut self, chars: Vec<u8>) { |
| 142 | let var = format!( |
nothing calls this directly
no test coverage detected