summaryrefslogtreecommitdiff
path: root/libraries/base/Text/Show/Functions.hs
blob: 5d5c9146632cf77b9038e695a5ef1e9138969189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-----------------------------------------------------------------------------
-- |
-- Module      :  Text.Show.Functions
-- Copyright   :  (c) The University of Glasgow 2001
-- License     :  BSD-style (see the file libraries/core/LICENSE)
-- 
-- Maintainer  :  libraries@haskell.org
-- Stability   :  provisional
-- Portability :  portable
--
-- Optional instance of Text.Show.Show for functions.
--
-----------------------------------------------------------------------------

module Text.Show.Functions where

import Prelude

instance Show (a -> b) where
	showsPrec _ _ = showString "<function>"