(s: &str, lower: bool)
| 335 | |
| 336 | #[inline] |
| 337 | fn unicode_case(s: &str, lower: bool) -> String { |
| 338 | if lower { |
| 339 | s.to_lowercase() |
| 340 | } else { |
| 341 | s.to_uppercase() |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | fn case_conversion( |
| 346 | args: &[ColumnarValue], |
no outgoing calls
no test coverage detected
searching dependent graphs…