This commit is contained in:
@ -11,6 +11,10 @@ pub fn contains(classifier_name: &str, instance_name: &str) -> bool {
|
||||
.contains(&classifier_name.to_lowercase())
|
||||
}
|
||||
|
||||
pub fn contains_case_sensitive(classifier_name: &str, instance_name: &str) -> bool {
|
||||
instance_name.contains(&classifier_name)
|
||||
}
|
||||
|
||||
pub fn starts_with_roman_number(_: &str, s: &str) -> bool {
|
||||
// Define the prefixes for Roman numerals.
|
||||
let roman_prefixes = [
|
||||
|
Reference in New Issue
Block a user