pub type LevelRun = Range<usize>;Expand description
A maximal substring of characters with the same embedding level.
Represented as a range of byte indices.
Aliased Type§
pub struct LevelRun {
pub start: usize,
pub end: usize,
}Fields§
§start: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).