Macro yarpl::peek[][src]

macro_rules! peek {
    ($Type:ident : $peeker: expr) => { ... };
}

Defines a type that solely parses with Peek.

Example

peek!(Letters : char::is_alphabetic);