pub trait CharStream<Data>: IntStream { fn get_text(&self, a: isize, b: isize) -> Data; }
Provides underlying data for Tokens.
Returns underlying data piece, either slice or owned copy. Panics if provided indexes are invalid Called by parser only on token intervals. This fact can be used by custom implementations