(v: &str, trimmer: &str, expected: &str)
| 246 | Some(up) => { |
| 247 | let c = if up { |
| 248 | x.to_uppercase().next().unwrap_or(x) |
| 249 | } else { |
| 250 | x.to_lowercase().next().unwrap_or(x) |
| 251 | }; |
| 252 | s.push(c); |
| 253 | } |
| 254 | None => s.push(x), |
| 255 | } |
| 256 | (None, s) |
| 257 | }); |
| 258 | camel |
nothing calls this directly
no test coverage detected