[][src]Function nom::combinator::flat_map

pub fn flat_map<I, O1, O2, E: ParseError<I>, F, G, H>(
    first: F,
    second: G
) -> impl Fn(I) -> IResult<I, O2, E> where
    F: Fn(I) -> IResult<I, O1, E>,
    G: Fn(O1) -> H,
    H: Fn(I) -> IResult<I, O2, E>,