pub fn between<A, B, C, I>(
    before: impl Parser<A, I>,
    within: impl Parser<B, I>,
    after: impl Parser<C, I>
) -> impl Parser<B, I>
Expand description

Parses something that is enclosed between two other things.