pub trait CharStream<Data>: IntStream {
    fn get_text(&self, a: isize, b: isize) -> Data;
}
Expand description

Provides underlying data for Tokens.

Required Methods

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

Implementors