(&self, trimmer: Option<String>)
| 34 | fn split_get_first(&self, splitter: Option<String>) -> String { |
| 35 | self.as_ref().map_or(Default::default(), |s| s.split_get_first(splitter)) |
| 36 | } |
| 37 | |
| 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 |
no outgoing calls
no test coverage detected