Trait lib::parsers::monadic::FMapOperation [−][src]
pub trait FMapOperation<E, A, B> where
E: Parser<A>, { fn fmap(self, f: Box<Fn(A) -> B>) -> FMap<E, A, B>; }
Required Methods
Implementors
-
impl<E, A, B> FMapOperation<E, A, B> for E where
E: Parser<A>,