FFunctor.Lift1
newtype Lift1 (ff :: (Type -> Type) -> Type -> Type) (g :: Type -> Type) x Source #
Constructors
Fields
Defined in FFunctor.Lift1
Methods
ffmap :: forall (g :: Type -> Type) (h :: Type -> Type) x. (Functor g, Functor h) => (g ~> h) -> Lift1 ff g x -> Lift1 ff h x #
fmap :: (a -> b) -> Lift1 ff g a -> Lift1 ff g b #
(<$) :: a -> Lift1 ff g b -> Lift1 ff g a #