mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
parent
a42e24e088
commit
734ef0a8a1
1 changed files with 2 additions and 8 deletions
|
@ -131,10 +131,7 @@ impl Uniq {
|
||||||
|
|
||||||
// fast path: avoid skipping
|
// fast path: avoid skipping
|
||||||
if self.ignore_case && slice_start == 0 && slice_stop == len {
|
if self.ignore_case && slice_start == 0 && slice_stop == len {
|
||||||
return closure(&mut fields_to_check.chars().map(|c| match c {
|
return closure(&mut fields_to_check.chars().flat_map(|c| c.to_uppercase()));
|
||||||
'a'..='z' => ((c as u8) - 32) as char,
|
|
||||||
_ => c,
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// fast path: we can avoid mapping chars to upper-case, if we don't want to ignore the case
|
// fast path: we can avoid mapping chars to upper-case, if we don't want to ignore the case
|
||||||
|
@ -147,10 +144,7 @@ impl Uniq {
|
||||||
.chars()
|
.chars()
|
||||||
.skip(slice_start)
|
.skip(slice_start)
|
||||||
.take(slice_stop)
|
.take(slice_stop)
|
||||||
.map(|c| match c {
|
.flat_map(|c| c.to_uppercase()),
|
||||||
'a'..='z' => ((c as u8) - 32) as char,
|
|
||||||
_ => c,
|
|
||||||
}),
|
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
closure(&mut fields_to_check.chars())
|
closure(&mut fields_to_check.chars())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue