pandora-0.2.9: Pandora/Pattern/Transformer/Liftable.hs
module Pandora.Pattern.Transformer.Liftable (Liftable (..)) where
import Pandora.Core.Functor (type (~>))
import Pandora.Pattern.Functor.Covariant (Covariant)
{- |
> When providing a new instance, you should ensure it satisfies one law:
> * Interchange: lift . point ≡ point
-}
class Liftable t where
lift :: Covariant u => u ~> t u