-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | A class for types with a default value (compatibility shim)
--   
--   This module re-exports the <a>Default</a> class from
--   <a>Data.Default</a>, for compatibility with older code.
@package data-default-class
@version 0.2.0.0


-- | This module re-exports the <a>Default</a> class from
--   <a>Data.Default</a>, for compatibility with older code.
module Data.Default.Class

-- | A class for types with a default value.
class Default a

-- | The default value for this type.
def :: Default a => a
($dmdef) :: (Default a, Generic a, GDefault (Rep a)) => a
