5d5c9146632cf77b9038e695a5ef1e9138969189
[ghc-base.git] / Text / Show / Functions.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Text.Show.Functions
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  provisional
9 -- Portability :  portable
10 --
11 -- Optional instance of Text.Show.Show for functions.
12 --
13 -----------------------------------------------------------------------------
14
15 module Text.Show.Functions where
16
17 import Prelude
18
19 instance Show (a -> b) where
20         showsPrec _ _ = showString "<function>"