module Test.Feat.Class {-# DEPRECATED "Use Control.Enumerable instead" #-}
( Enumerable(..)
, nullary
, unary
, funcurry
, shared
, consts
, deriveEnumerable
) where
import Control.Enumerable
{-# DEPRECATED nullary "use c0 instead" #-}
nullary x = c0 x
{-# DEPRECATED unary "use c1 instead" #-}
unary x = c1 x
{-# DEPRECATED shared "use access instead" #-}
shared :: (Sized f, Enumerable a, Typeable f) => Shareable f a
shared = access
funcurry = uncurry
{-# DEPRECATED consts "use datatype instead" #-}
consts xs = datatype xs