| Copyright | (c) 2010-2011 Patrick Bahr Tom Hvitved | 
|---|---|
| License | BSD3 | 
| Maintainer | Patrick Bahr <paba@diku.dk> | 
| Stability | experimental | 
| Portability | non-portable (GHC Extensions) | 
| Safe Haskell | None | 
| Language | Haskell98 | 
Data.Comp.Show
Contents
Description
This module defines showing of signatures, which lifts to showing of terms and contexts.
- class ShowF f where
 
Documentation
Signature printing. An instance ShowF f gives rise to an instance
  Show (Term f). 
Minimal complete definition
Orphan instances
| ShowF [] Source # | |
| ShowF Maybe Source # | |
| Show a0 => ShowF ((,) a0) Source # | |
| (Functor f, ShowF f) => ShowF (Cxt h f) Source # | |
| (Functor f, ShowF f, Show a) => Show (Cxt h f a) Source # | |
| (ShowConstr f, Show p) => ShowConstr ((:&:) * f p) Source # | |
| (ShowConstr f, ShowConstr g) => ShowConstr ((:+:) * f g) Source # | |
| (ShowF f, Show p) => ShowF ((:&:) * f p) Source # | |
| (ShowF f, ShowF g) => ShowF ((:+:) * f g) Source # | |