(&self)
| 981 | type Bound = char; |
| 982 | |
| 983 | #[inline] fn lower(&self) -> char { self.start } |
| 984 | #[inline] fn upper(&self) -> char { self.end } |
| 985 | #[inline] fn set_lower(&mut self, bound: char) { self.start = bound; } |
| 986 | #[inline] fn set_upper(&mut self, bound: char) { self.end = bound; } |
no outgoing calls