mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
remove unnecessary allocations in switch_case (#12786)
This commit is contained in:
parent
7bebe0a70e
commit
e1c7a1ed77
1 changed files with 35 additions and 3 deletions
|
@ -67,6 +67,7 @@ use crate::{
|
||||||
|
|
||||||
use crate::job::{self, Jobs};
|
use crate::job::{self, Jobs};
|
||||||
use std::{
|
use std::{
|
||||||
|
char::{ToLowercase, ToUppercase},
|
||||||
cmp::Ordering,
|
cmp::Ordering,
|
||||||
collections::{HashMap, HashSet},
|
collections::{HashMap, HashSet},
|
||||||
error::Error,
|
error::Error,
|
||||||
|
@ -1727,17 +1728,48 @@ where
|
||||||
exit_select_mode(cx);
|
exit_select_mode(cx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum CaseSwitcher {
|
||||||
|
Upper(ToUppercase),
|
||||||
|
Lower(ToLowercase),
|
||||||
|
Keep(Option<char>),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Iterator for CaseSwitcher {
|
||||||
|
type Item = char;
|
||||||
|
|
||||||
|
fn next(&mut self) -> Option<Self::Item> {
|
||||||
|
match self {
|
||||||
|
CaseSwitcher::Upper(upper) => upper.next(),
|
||||||
|
CaseSwitcher::Lower(lower) => lower.next(),
|
||||||
|
CaseSwitcher::Keep(ch) => ch.take(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
||||||
|
match self {
|
||||||
|
CaseSwitcher::Upper(upper) => upper.size_hint(),
|
||||||
|
CaseSwitcher::Lower(lower) => lower.size_hint(),
|
||||||
|
CaseSwitcher::Keep(ch) => {
|
||||||
|
let n = if ch.is_some() { 1 } else { 0 };
|
||||||
|
(n, Some(n))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ExactSizeIterator for CaseSwitcher {}
|
||||||
|
|
||||||
fn switch_case(cx: &mut Context) {
|
fn switch_case(cx: &mut Context) {
|
||||||
switch_case_impl(cx, |string| {
|
switch_case_impl(cx, |string| {
|
||||||
string
|
string
|
||||||
.chars()
|
.chars()
|
||||||
.flat_map(|ch| {
|
.flat_map(|ch| {
|
||||||
if ch.is_lowercase() {
|
if ch.is_lowercase() {
|
||||||
ch.to_uppercase().collect()
|
CaseSwitcher::Upper(ch.to_uppercase())
|
||||||
} else if ch.is_uppercase() {
|
} else if ch.is_uppercase() {
|
||||||
ch.to_lowercase().collect()
|
CaseSwitcher::Lower(ch.to_lowercase())
|
||||||
} else {
|
} else {
|
||||||
vec![ch]
|
CaseSwitcher::Keep(Some(ch))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.collect()
|
.collect()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue