pub fn reader_fmap<E: Clone + 'static, A: 'static, B: 'static>( reader: Reader<E, A>, f: impl Fn(A) -> B + 'static, ) -> Reader<E, B>
Lift a function into the Reader functor.