(&self)
| 38 | fn split_get_last(&self, splitter: Option<String>) -> String { |
| 39 | self.as_ref().map_or(Default::default(), |s| s.split_get_last(splitter)) |
| 40 | } |
| 41 | |
| 42 | fn get_first_char(&self) -> Option<char> { |
| 43 | self.as_ref().and_then(|s| s.get_first_char()) |
| 44 | } |
| 45 |
no test coverage detected