shithub: MicroHs

ref: d4dea2defccb349c3a6833bcd10ebf16c6cea49d
dir: /lib/Data/Orphans.hs/

View raw version
-- Instance declarations that can't be put where
-- due to import cycles.
module Data.Orphans where
import Prelude(); import MiniPrelude

instance (Show a) => Show (Down a) where
  showsPrec d (Down x) = showParen (d > 10) $
    showString "Down " . showsPrec 11 x