tiger_lib::parse::pdxfile

Trait CharExt

Source
trait CharExt {
    // Required methods
    fn is_id_char(self) -> bool;
    fn is_local_value_char(self) -> bool;
    fn is_comparator_char(self) -> bool;
}
Expand description

A convenience trait to add some methods to char

Required Methods§

Source

fn is_id_char(self) -> bool

Can the char be part of an unquoted token?

Source

fn is_local_value_char(self) -> bool

Can the char be part of a reader variable name?

Source

fn is_comparator_char(self) -> bool

Can the char be part of a Comparator?

Implementations on Foreign Types§

Source§

impl CharExt for char

Implementors§