Simplify using is_ascii_alphabetic and is_ascii_alphanumeric

This commit is contained in:
LingMan 2020-09-23 06:49:42 +02:00
parent e533bb73bc
commit a56b0e96d0
1 changed files with 2 additions and 8 deletions

View File

@ -716,17 +716,11 @@ pub mod shell {
}
fn is_ident_head(c: char) -> bool {
match c {
'a'..='z' | 'A'..='Z' | '_' => true,
_ => false,
}
c.is_ascii_alphabetic() || c == '_'
}
fn is_ident_tail(c: char) -> bool {
match c {
'0'..='9' => true,
c => is_ident_head(c),
}
c.is_ascii_alphanumeric() || c == '_'
}
#[cfg(test)]