Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 70ec89744a04da80369b4702b2c37256 > files > 282

ghc-doc-6.10.4-1mdv2010.0.i586.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--Rendered using the Haskell Html Library v0.2-->
<HTML
><HEAD
><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"
><TITLE
>Text.Show</TITLE
><LINK HREF="haddock.css" REL="stylesheet" TYPE="text/css"
><SCRIPT SRC="haddock-util.js" TYPE="text/javascript"
></SCRIPT
><SCRIPT TYPE="text/javascript"
>window.onload = function () {setSynopsis("mini_Text-Show.html")};</SCRIPT
></HEAD
><BODY
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="topbar"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD
><IMG SRC="haskell_icon.gif" WIDTH="16" HEIGHT="16" ALT=" "
></TD
><TD CLASS="title"
>base-4.1.0.0: Basic libraries</TD
><TD CLASS="topbut"
><A HREF="index.html"
>Contents</A
></TD
><TD CLASS="topbut"
><A HREF="doc-index.html"
>Index</A
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="modulebar"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD
><FONT SIZE="6"
>Text.Show</FONT
></TD
><TD ALIGN="right"
><TABLE CLASS="narrow" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="infohead"
>Portability</TD
><TD CLASS="infoval"
>portable</TD
></TR
><TR
><TD CLASS="infohead"
>Stability</TD
><TD CLASS="infoval"
>provisional</TD
></TR
><TR
><TD CLASS="infohead"
>Maintainer</TD
><TD CLASS="infoval"
>libraries@haskell.org</TD
></TR
></TABLE
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="section1"
>Description</TD
></TR
><TR
><TD CLASS="doc"
>Converting values to readable strings:
 the <TT
><A HREF="Text-Show.html#t%3AShow"
>Show</A
></TT
> class and associated functions.
</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="section1"
>Synopsis</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="body"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A HREF="#t%3AShowS"
>ShowS</A
> = <A HREF="Data-Char.html#t%3AString"
>String</A
> -&gt; <A HREF="Data-Char.html#t%3AString"
>String</A
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>class</SPAN
>  <A HREF="#t%3AShow"
>Show</A
> a  <SPAN CLASS="keyword"
>where</SPAN
></TD
></TR
><TR
><TD CLASS="body"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="decl"
><A HREF="#v%3AshowsPrec"
>showsPrec</A
> :: <A HREF="../ghc-prim/GHC-Types.html#t%3AInt"
>Int</A
> -&gt; a -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="#v%3Ashow"
>show</A
> :: a -&gt; <A HREF="Data-Char.html#t%3AString"
>String</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="#v%3AshowList"
>showList</A
> :: [a] -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="#v%3Ashows"
>shows</A
> :: <A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; a -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="#v%3AshowChar"
>showChar</A
> :: <A HREF="../ghc-prim/GHC-Types.html#t%3AChar"
>Char</A
> -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="#v%3AshowString"
>showString</A
> :: <A HREF="Data-Char.html#t%3AString"
>String</A
> -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="#v%3AshowParen"
>showParen</A
> :: <A HREF="../ghc-prim/GHC-Bool.html#t%3ABool"
>Bool</A
> -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
> -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="#v%3AshowListWith"
>showListWith</A
> ::  (a -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
>) -&gt; [a] -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="section1"
>Documentation</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:ShowS"
><A NAME="t%3AShowS"
></A
></A
><B
>ShowS</B
> = <A HREF="Data-Char.html#t%3AString"
>String</A
> -&gt; <A HREF="Data-Char.html#t%3AString"
>String</A
></TD
></TR
><TR
><TD CLASS="doc"
>The <TT
>shows</TT
> functions return a function that prepends the
 output <TT
><A HREF="Data-Char.html#t%3AString"
>String</A
></TT
> to an existing <TT
><A HREF="Data-Char.html#t%3AString"
>String</A
></TT
>.  This allows constant-time
 concatenation of results using function composition.
</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>class</SPAN
>  <A NAME="t:Show"
><A NAME="t%3AShow"
></A
></A
><B
>Show</B
> a  <SPAN CLASS="keyword"
>where</SPAN
></TD
></TR
><TR
><TD CLASS="body"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="ndoc"
><P
>Conversion of values to readable <TT
><A HREF="Data-Char.html#t%3AString"
>String</A
></TT
>s.
</P
><P
>Minimal complete definition: <TT
><A HREF="Text-Show.html#v%3AshowsPrec"
>showsPrec</A
></TT
> or <TT
><A HREF="Text-Show.html#v%3Ashow"
>show</A
></TT
>.
</P
><P
>Derived instances of <TT
><A HREF="Text-Show.html#t%3AShow"
>Show</A
></TT
> have the following properties, which
 are compatible with derived instances of Text.Read.Read:
</P
><UL
><LI
> The result of <TT
><A HREF="Text-Show.html#v%3Ashow"
>show</A
></TT
> is a syntactically correct Haskell
   expression containing only constants, given the fixity
   declarations in force at the point where the type is declared.
   It contains only the constructor names defined in the data type,
   parentheses, and spaces.  When labelled constructor fields are
   used, braces, commas, field names, and equal signs are also used.
</LI
><LI
> If the constructor is defined to be an infix operator, then
   <TT
><A HREF="Text-Show.html#v%3AshowsPrec"
>showsPrec</A
></TT
> will produce infix applications of the constructor.
</LI
><LI
> the representation will be enclosed in parentheses if the
   precedence of the top-level constructor in <TT
>x</TT
> is less than <TT
>d</TT
>
   (associativity is ignored).  Thus, if <TT
>d</TT
> is <TT
>0</TT
> then the result
   is never surrounded in parentheses; if <TT
>d</TT
> is <TT
>11</TT
> it is always
   surrounded in parentheses, unless it is an atomic expression.
</LI
><LI
> If the constructor is defined using record syntax, then <TT
><A HREF="Text-Show.html#v%3Ashow"
>show</A
></TT
>
   will produce the record-syntax form, with the fields given in the
   same order as the original declaration.
</LI
></UL
><P
>For example, given the declarations
</P
><PRE
> infixr 5 :^:
 data Tree a =  Leaf a  |  Tree a :^: Tree a
</PRE
><P
>the derived instance of <TT
><A HREF="Text-Show.html#t%3AShow"
>Show</A
></TT
> is equivalent to
</P
><PRE
> instance (Show a) =&gt; Show (Tree a) where

        showsPrec d (Leaf m) = showParen (d &gt; app_prec) $
             showString &quot;Leaf &quot; . showsPrec (app_prec+1) m
          where app_prec = 10

        showsPrec d (u :^: v) = showParen (d &gt; up_prec) $
             showsPrec (up_prec+1) u . 
             showString &quot; :^: &quot;      .
             showsPrec (up_prec+1) v
          where up_prec = 5
</PRE
><P
>Note that right-associativity of <TT
>:^:</TT
> is ignored.  For example,
</P
><UL
><LI
> <TT
><TT
><A HREF="Text-Show.html#v%3Ashow"
>show</A
></TT
> (Leaf 1 :^: Leaf 2 :^: Leaf 3)</TT
> produces the string
   <TT
>&quot;Leaf 1 :^: (Leaf 2 :^: Leaf 3)&quot;</TT
>.
</LI
></UL
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="section4"
>Methods</TD
></TR
><TR
><TD CLASS="body"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="decl"
><A NAME="v:showsPrec"
><A NAME="v%3AshowsPrec"
></A
></A
><B
>showsPrec</B
></TD
></TR
><TR
><TD CLASS="body"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="arg"
>:: <A HREF="../ghc-prim/GHC-Types.html#t%3AInt"
>Int</A
></TD
><TD CLASS="rdoc"
>the operator precedence of the enclosing
 context (a number from <TT
>0</TT
> to <TT
>11</TT
>).
 Function application has precedence <TT
>10</TT
>.
</TD
></TR
><TR
><TD CLASS="arg"
>-&gt; a</TD
><TD CLASS="rdoc"
>the value to be converted to a <TT
><A HREF="Data-Char.html#t%3AString"
>String</A
></TT
>
</TD
></TR
><TR
><TD CLASS="arg"
>-&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
><TD CLASS="rdoc"
></TD
></TR
><TR
><TD CLASS="ndoc" COLSPAN="2"
><P
>Convert a value to a readable <TT
><A HREF="Data-Char.html#t%3AString"
>String</A
></TT
>.
</P
><P
><TT
><A HREF="Text-Show.html#v%3AshowsPrec"
>showsPrec</A
></TT
> should satisfy the law
</P
><PRE
> showsPrec d x r ++ s  ==  showsPrec d x (r ++ s)
</PRE
><P
>Derived instances of Text.Read.Read and <TT
><A HREF="Text-Show.html#t%3AShow"
>Show</A
></TT
> satisfy the following:
</P
><UL
><LI
> <TT
>(x,&quot;&quot;)</TT
> is an element of
   <TT
>(Text.Read.readsPrec d (<TT
><A HREF="Text-Show.html#v%3AshowsPrec"
>showsPrec</A
></TT
> d x &quot;&quot;))</TT
>.
</LI
></UL
><P
>That is, Text.Read.readsPrec parses the string produced by
 <TT
><A HREF="Text-Show.html#v%3AshowsPrec"
>showsPrec</A
></TT
>, and delivers the value that <TT
><A HREF="Text-Show.html#v%3AshowsPrec"
>showsPrec</A
></TT
> started with.
</P
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:show"
><A NAME="v%3Ashow"
></A
></A
><B
>show</B
> :: a -&gt; <A HREF="Data-Char.html#t%3AString"
>String</A
></TD
></TR
><TR
><TD CLASS="doc"
>A specialised variant of <TT
><A HREF="Text-Show.html#v%3AshowsPrec"
>showsPrec</A
></TT
>, using precedence context
 zero, and returning an ordinary <TT
><A HREF="Data-Char.html#t%3AString"
>String</A
></TT
>.
</TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:showList"
><A NAME="v%3AshowList"
></A
></A
><B
>showList</B
> :: [a] -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="doc"
>The method <TT
><A HREF="Text-Show.html#v%3AshowList"
>showList</A
></TT
> is provided to allow the programmer to
 give a specialised way of showing lists of values.
 For example, this is used by the predefined <TT
><A HREF="Text-Show.html#t%3AShow"
>Show</A
></TT
> instance of
 the <TT
><A HREF="../ghc-prim/GHC-Types.html#t%3AChar"
>Char</A
></TT
> type, where values of type <TT
><A HREF="Data-Char.html#t%3AString"
>String</A
></TT
> should be shown
 in double quotes, rather than between square brackets.
</TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="s8"
></TD
></TR
><TR
><TD CLASS="section4"
><IMG SRC="minus.gif" CLASS="coll" ONCLICK="toggle(this,'i:Show')" ALT="show/hide"
> Instances</TD
></TR
><TR
><TD CLASS="body"
><DIV ID="i:Show" STYLE="display:block;"
><TABLE CLASS="vanilla" CELLSPACING="1" CELLPADDING="0"
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="../ghc-prim/GHC-Bool.html#t%3ABool"
>Bool</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="../ghc-prim/GHC-Types.html#t%3AChar"
>Char</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="../ghc-prim/GHC-Types.html#t%3ADouble"
>Double</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="../ghc-prim/GHC-Types.html#t%3AFloat"
>Float</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="../ghc-prim/GHC-Types.html#t%3AInt"
>Int</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Int.html#t%3AInt8"
>Int8</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Int.html#t%3AInt16"
>Int16</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Int.html#t%3AInt32"
>Int32</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Int.html#t%3AInt64"
>Int64</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="../integer/GHC-Integer.html#t%3AInteger"
>Integer</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="../ghc-prim/GHC-Ordering.html#t%3AOrdering"
>Ordering</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Word.html#t%3AWord"
>Word</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Word.html#t%3AWord8"
>Word8</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Word.html#t%3AWord16"
>Word16</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Word.html#t%3AWord32"
>Word32</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Word.html#t%3AWord64"
>Word64</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="../ghc-prim/GHC-Unit.html#t%3A%28%29"
>()</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Typeable.html#t%3ATyCon"
>TyCon</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Typeable.html#t%3ATypeRep"
>TypeRep</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3AArithException"
>ArithException</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3AErrorCall"
>ErrorCall</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ASomeException"
>SomeException</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Text-Read-Lex.html#t%3ALexeme"
>Lexeme</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACUIntMax"
>CUIntMax</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACIntMax"
>CIntMax</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACUIntPtr"
>CUIntPtr</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACIntPtr"
>CIntPtr</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACTime"
>CTime</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACClock"
>CClock</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACSigAtomic"
>CSigAtomic</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACWchar"
>CWchar</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACSize"
>CSize</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACPtrdiff"
>CPtrdiff</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACLDouble"
>CLDouble</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACDouble"
>CDouble</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACFloat"
>CFloat</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACULLong"
>CULLong</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACLLong"
>CLLong</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACULong"
>CULong</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACLong"
>CLong</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACUInt"
>CUInt</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACInt"
>CInt</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACUShort"
>CUShort</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACShort"
>CShort</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACUChar"
>CUChar</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACSChar"
>CSChar</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-C-Types.html#t%3ACChar"
>CChar</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-IO.html#t%3AIOMode"
>IOMode</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-IO-Error.html#t%3AIOErrorType"
>IOErrorType</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3AIOException"
>IOException</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Exit.html#t%3AExitCode"
>ExitCode</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3AArrayException"
>ArrayException</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3AAsyncException"
>AsyncException</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3AAssertionFailed"
>AssertionFailed</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ADeadlock"
>Deadlock</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ABlockedIndefinitely"
>BlockedIndefinitely</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ABlockedOnDeadMVar"
>BlockedOnDeadMVar</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-IO.html#t%3ABufferMode"
>BufferMode</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> HandleType</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-IO.html#t%3AHandle"
>Handle</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Char.html#t%3AGeneralCategory"
>GeneralCategory</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> HashData</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Dynamic.html#t%3ADynamic"
>Dynamic</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-Ptr.html#t%3AIntPtr"
>IntPtr</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Foreign-Ptr.html#t%3AWordPtr"
>WordPtr</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3AFd"
>Fd</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACRLim"
>CRLim</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACTcflag"
>CTcflag</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACSpeed"
>CSpeed</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACCc"
>CCc</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACUid"
>CUid</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACNlink"
>CNlink</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACGid"
>CGid</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACSsize"
>CSsize</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACPid"
>CPid</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACOff"
>COff</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACMode"
>CMode</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACIno"
>CIno</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-Posix-Types.html#t%3ACDev"
>CDev</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="GHC-Conc.html#t%3AThreadStatus"
>ThreadStatus</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="GHC-Conc.html#t%3ABlockReason"
>BlockReason</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Concurrent.html#t%3AThreadId"
>ThreadId</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ANestedAtomically"
>NestedAtomically</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ANonTermination"
>NonTermination</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ANoMethodError"
>NoMethodError</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ARecUpdError"
>RecUpdError</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ARecConError"
>RecConError</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3ARecSelError"
>RecSelError</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-Exception-Base.html#t%3APatternMatchFail"
>PatternMatchFail</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-IO.html#t%3ASeekMode"
>SeekMode</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="System-IO.html#t%3AHandlePosn"
>HandlePosn</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Control-OldException.html#t%3AException"
>Exception</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Data.html#t%3AFixity"
>Fixity</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Data.html#t%3AConstrRep"
>ConstrRep</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Data.html#t%3ADataRep"
>DataRep</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Data.html#t%3AConstr"
>Constr</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Data.html#t%3ADataType"
>DataType</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Monoid.html#t%3AAny"
>Any</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Monoid.html#t%3AAll"
>All</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> Timeout</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> <A HREF="Data-Version.html#t%3AVersion"
>Version</A
></TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> ([] a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Prelude.html#t%3AIntegral"
>Integral</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Ratio.html#t%3ARatio"
>Ratio</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Foreign-Ptr.html#t%3APtr"
>Ptr</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Foreign-Ptr.html#t%3AFunPtr"
>FunPtr</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> ([::] a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Maybe.html#t%3AMaybe"
>Maybe</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Foreign-ForeignPtr.html#t%3AForeignPtr"
>ForeignPtr</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Prelude.html#t%3ARealFloat"
>RealFloat</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Complex.html#t%3AComplex"
>Complex</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Data-Fixed.html#t%3AHasResolution"
>HasResolution</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Fixed.html#t%3AFixed"
>Fixed</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Monoid.html#t%3ALast"
>Last</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Monoid.html#t%3AFirst"
>First</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Monoid.html#t%3AProduct"
>Product</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Monoid.html#t%3ASum"
>Sum</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Monoid.html#t%3ADual"
>Dual</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> (a -&gt; b)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Data-Either.html#t%3AEither"
>Either</A
> a b)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%29"
>(,)</A
> a b)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="Control-Monad-ST.html#t%3AST"
>ST</A
> s a)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="GHC-Arr.html#t%3AIx"
>Ix</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="GHC-Arr.html#t%3AArray"
>Array</A
> a b)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%29"
>(,,)</A
> a b c)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%29"
>(,,,)</A
> a b c d)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%29"
>(,,,,)</A
> a b c d e)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%29"
>(,,,,,)</A
> a b c d e f)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,)</A
> a b c d e f g)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> h) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,,)</A
> a b c d e f g h)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> h, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> i) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,,,)</A
> a b c d e f g h i)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> h, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> i, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> j) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,,,,)</A
> a b c d e f g h i j)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> h, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> i, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> j, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> k) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,,,,,)</A
> a b c d e f g h i j k)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> h, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> i, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> j, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> k, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> l) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,,,,,,)</A
> a b c d e f g h i j k l)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> h, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> i, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> j, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> k, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> l, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> m) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,,,,,,,)</A
> a b c d e f g h i j k l m)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> h, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> i, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> j, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> k, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> l, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> m, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> n) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,,,,,,,,)</A
> a b c d e f g h i j k l m n)</TD
></TR
><TR
><TD CLASS="decl"
>(<A HREF="Text-Show.html#t%3AShow"
>Show</A
> a, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> b, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> c, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> d, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> e, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> f, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> g, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> h, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> i, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> j, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> k, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> l, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> m, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> n, <A HREF="Text-Show.html#t%3AShow"
>Show</A
> o) =&gt; <A HREF="Text-Show.html#t%3AShow"
>Show</A
> (<A HREF="../ghc-prim/GHC-Tuple.html#t%3A%28%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%29"
>(,,,,,,,,,,,,,,)</A
> a b c d e f g h i j k l m n o)</TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:shows"
><A NAME="v%3Ashows"
></A
></A
><B
>shows</B
> :: <A HREF="Text-Show.html#t%3AShow"
>Show</A
> a =&gt; a -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="doc"
>equivalent to <TT
><A HREF="Text-Show.html#v%3AshowsPrec"
>showsPrec</A
></TT
> with a precedence of 0.
</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:showChar"
><A NAME="v%3AshowChar"
></A
></A
><B
>showChar</B
> :: <A HREF="../ghc-prim/GHC-Types.html#t%3AChar"
>Char</A
> -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="doc"
>utility function converting a <TT
><A HREF="../ghc-prim/GHC-Types.html#t%3AChar"
>Char</A
></TT
> to a show function that
 simply prepends the character unchanged.
</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:showString"
><A NAME="v%3AshowString"
></A
></A
><B
>showString</B
> :: <A HREF="Data-Char.html#t%3AString"
>String</A
> -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="doc"
>utility function converting a <TT
><A HREF="Data-Char.html#t%3AString"
>String</A
></TT
> to a show function that
 simply prepends the string unchanged.
</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:showParen"
><A NAME="v%3AshowParen"
></A
></A
><B
>showParen</B
> :: <A HREF="../ghc-prim/GHC-Bool.html#t%3ABool"
>Bool</A
> -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
> -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="doc"
>utility function that surrounds the inner show function with
 parentheses when the <TT
><A HREF="../ghc-prim/GHC-Bool.html#t%3ABool"
>Bool</A
></TT
> parameter is <TT
><A HREF="../ghc-prim/GHC-Bool.html#v%3ATrue"
>True</A
></TT
>.
</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:showListWith"
><A NAME="v%3AshowListWith"
></A
></A
><B
>showListWith</B
> ::  (a -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
>) -&gt; [a] -&gt; <A HREF="Text-Show.html#t%3AShowS"
>ShowS</A
></TD
></TR
><TR
><TD CLASS="doc"
>Show a list (using square brackets and commas), given a function
 for showing elements.
</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="botbar"
>Produced by <A HREF="http://www.haskell.org/haddock/"
>Haddock</A
> version 2.4.2</TD
></TR
></TABLE
></BODY
></HTML
>