(items: &[ClassItem], c: char)
| 283 | } |
| 284 | |
| 285 | fn class_contains(items: &[ClassItem], c: char) -> bool { |
| 286 | items.iter().any(|it| item_match(it, c)) |
| 287 | } |
| 288 | |
| 289 | /* Case variants to test for ignorecase class membership. */ |
| 290 | fn fold_variants(c: char) -> [char; 2] { |
no test coverage detected