comonads-fd-1.7: Control/Monad/Free.hs
-----------------------------------------------------------------------------
-- |
-- Module : Control.Monad.Free
-- Copyright : (C) 2008-2011 Edward Kmett
-- License : BSD-style (see the file LICENSE)
--
-- Maintainer : Edward Kmett <ekmett@gmail.com>
-- Stability : experimental
-- Portability : non-portable (fundeps, MPTCs)
----------------------------------------------------------------------------
module Control.Monad.Free
( MonadFree(..)
, Free(..)
, iter
, retract
) where
import Control.Monad.Free.Class
import Control.Monad.Trans.Free