clippy: is_digit(10) -> is_ascii_digit() (#25428)
This commit is contained in:
parent
7fb0ef1fa5
commit
e9a6d1ecef
|
@ -345,7 +345,7 @@ fn all_digits(v: &str) -> bool {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
for x in v.chars() {
|
for x in v.chars() {
|
||||||
if !x.is_digit(10) {
|
if !x.is_ascii_digit() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -356,7 +356,7 @@ fn like_storage(v: &str) -> bool {
|
||||||
let mut periods = 0;
|
let mut periods = 0;
|
||||||
let mut saw_numbers = false;
|
let mut saw_numbers = false;
|
||||||
for x in v.chars() {
|
for x in v.chars() {
|
||||||
if !x.is_digit(10) {
|
if !x.is_ascii_digit() {
|
||||||
if x == '.' {
|
if x == '.' {
|
||||||
if periods > 0 || !saw_numbers {
|
if periods > 0 || !saw_numbers {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue