Trait lib::parsers::flow::AndOperation[][src]

pub trait AndOperation<E, A, R, B> where
    E: Parser<A>,
    R: Parser<B>, 
{ fn then(self, _: R) -> And<E, A, R, B>;
fn then_left(self, b: R) -> FMap<And<E, A, R, B>, (A, B), A>;
fn then_right(self, b: R) -> FMap<And<E, A, R, B>, (A, B), B>; }

Required Methods

Implementors