{-# LANGUAGE GADTs #-} ----------------------------------------------------------------------------- -- | -- Module : Data.Profunctor.Trace -- Copyright : (C) 2011-2012 Edward Kmett -- License : BSD-style (see the file LICENSE) -- -- Maintainer : Edward Kmett -- Stability : provisional -- Portability : GADTs -- ---------------------------------------------------------------------------- module Data.Profunctor.Trace ( Trace(..) ) where -- | Coend of 'Data.Profunctor.Profunctor' from @Hask -> Hask@ data Trace f where Trace :: f a a -> Trace f