pub fn symbol<T, E, P, A>(
    parser: P
) -> impl FnMut(T) -> IResult<T, Symbol<A>, E>where
    T: Spanned,
    E: ParseError<T>,
    P: Parser<T, A, E>,
Expand description

Executes the parser returning any data automatically combing the span of such data into a symbol.