trait CharsetRange {
// Required methods
fn first(&self) -> u32;
fn n_left(&self) -> u32;
}
Expand description
Trait that unifies ranges for formats 1 and 2 so that we can implement the tricky search logic once.
trait CharsetRange {
// Required methods
fn first(&self) -> u32;
fn n_left(&self) -> u32;
}
Trait that unifies ranges for formats 1 and 2 so that we can implement the tricky search logic once.