fn check_mixed_case(
s: &str,
is_fn: bool,
allowed_patterns: &[String],
) -> Option<String>Expand description
Wraps check_mixed_case_pure with two domain exceptions: foundry test-function prefixes
and user-defined infix patterns, which split the name into a lowerCamelCase prefix and an
UpperCamelCase suffix (allowing leading digits).