(&self)
| 74 | |
| 75 | fn insert_text(&mut self, text: &str, char_index: egui::text::CharIndex) -> usize { |
| 76 | let mut text_string = text.to_string(); |
| 77 | text_string.retain(|c| c.is_ascii_hexdigit()); |
| 78 | text_string.make_ascii_uppercase(); |
| 79 | |
| 80 | let byte_idx = byte_index_from_char_index(self.as_str(), char_index); |
| 81 |
no outgoing calls
no test coverage detected