- class GShow t where
- gshowsPrec :: Int -> t a -> ShowS
- gshows :: GShow t => t a -> ShowS
- gshow :: GShow t => t a -> String
- type GReadS t = String -> [(forall b. (forall a. t a -> b) -> b, String)]
- class GRead t where
- greadsPrec :: Int -> GReadS t
- greads :: GRead t => GReadS t
- gread :: GRead t => String -> (forall a. t a -> b) -> b
Documentation
Show
-like class for 1-type-parameter GADTs
gshowsPrec :: Int -> t a -> ShowSSource