Function peresil::combinators::map[][src]

pub fn map<P, E, S, F, C, T, U>(
    parser: F,
    convert: C
) -> impl FnOnce(&mut ParseMaster<P, E, S>, P) -> Progress<P, U, E> where
    F: FnOnce(&mut ParseMaster<P, E, S>, P) -> Progress<P, T, E>,
    C: FnOnce(T) -> U,
    P: Point,
    E: Recoverable