#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702
#endif
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 708
#endif
module Data.Some where
import Data.GADT.Show
import Data.GADT.Compare
import Data.Maybe
data Some tag where
This :: !(tag t) -> Some tag
withSome :: Some tag -> (forall a. tag a -> b) -> b
withSome (This thing) some = some thing
instance GShow tag => Show (Some tag) where
showsPrec p (This thing) = showParen (p > 10)
( showString "This "
. gshowsPrec 11 thing
)
instance GRead f => Read (Some f) where
readsPrec p = readParen (p>10) $ \s ->
[ (withTag This, rest')
| let (con, rest) = splitAt 5 s
, con == "This "
, (withTag, rest') <- greadsPrec 11 rest
]
instance GEq tag => Eq (Some tag) where
This x == This y = defaultEq x y
instance GCompare tag => Ord (Some tag) where
compare (This x) (This y) = defaultCompare x y