mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
16 lines
372 B
Rust
16 lines
372 B
Rust
pub trait _StrExt {
|
|
fn _is_char_boundary(&self, index: usize) -> bool;
|
|
}
|
|
|
|
impl _StrExt for str {
|
|
#[inline]
|
|
fn _is_char_boundary(&self, index: usize) -> bool {
|
|
if index == self.len() {
|
|
return true;
|
|
}
|
|
match self.as_bytes().get(index) {
|
|
None => false,
|
|
Some(&b) => b < 128 || b >= 192,
|
|
}
|
|
}
|
|
}
|