a08ace929f371526fc1deb49d94a2bbd0e385c06
[ghc-hetmet.git] / docs / users_guide / glasgow_exts.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <para>
3 <indexterm><primary>language, GHC</primary></indexterm>
4 <indexterm><primary>extensions, GHC</primary></indexterm>
5 As with all known Haskell systems, GHC implements some extensions to
6 the language.  They are all enabled by options; by default GHC
7 understands only plain Haskell 98.
8 </para>
9
10 <para>
11 Some of the Glasgow extensions serve to give you access to the
12 underlying facilities with which we implement Haskell.  Thus, you can
13 get at the Raw Iron, if you are willing to write some non-portable
14 code at a more primitive level.  You need not be &ldquo;stuck&rdquo;
15 on performance because of the implementation costs of Haskell's
16 &ldquo;high-level&rdquo; features&mdash;you can always code
17 &ldquo;under&rdquo; them.  In an extreme case, you can write all your
18 time-critical code in C, and then just glue it together with Haskell!
19 </para>
20
21 <para>
22 Before you get too carried away working at the lowest level (e.g.,
23 sloshing <literal>MutableByteArray&num;</literal>s around your
24 program), you may wish to check if there are libraries that provide a
25 &ldquo;Haskellised veneer&rdquo; over the features you want.  The
26 separate <ulink url="../libraries/index.html">libraries
27 documentation</ulink> describes all the libraries that come with GHC.
28 </para>
29
30 <!-- LANGUAGE OPTIONS -->
31   <sect1 id="options-language">
32     <title>Language options</title>
33
34     <indexterm><primary>language</primary><secondary>option</secondary>
35     </indexterm>
36     <indexterm><primary>options</primary><secondary>language</secondary>
37     </indexterm>
38     <indexterm><primary>extensions</primary><secondary>options controlling</secondary>
39     </indexterm>
40
41     <para>The language option flags control what variation of the language are
42     permitted.  Leaving out all of them gives you standard Haskell
43     98.</para>
44
45     <para>Language options can be controlled in two ways:
46     <itemizedlist>
47       <listitem><para>Every language option can switched on by a command-line flag "<option>-X...</option>" 
48         (e.g. <option>-XTemplateHaskell</option>), and switched off by the flag "<option>-XNo...</option>"; 
49         (e.g. <option>-XNoTemplateHaskell</option>).</para></listitem>
50       <listitem><para>
51           Language options recognised by Cabal can also be enabled using the <literal>LANGUAGE</literal> pragma,
52           thus <literal>{-# LANGUAGE TemplateHaskell #-}</literal> (see <xref linkend="language-pragma"/>). </para>
53           </listitem>
54       </itemizedlist></para>
55
56     <para>The flag <option>-fglasgow-exts</option>
57           <indexterm><primary><option>-fglasgow-exts</option></primary></indexterm>
58           is equivalent to enabling the following extensions: 
59           <option>-XPrintExplicitForalls</option>,
60           <option>-XForeignFunctionInterface</option>,
61           <option>-XUnliftedFFITypes</option>,
62           <option>-XGADTs</option>,
63           <option>-XImplicitParams</option>,
64           <option>-XScopedTypeVariables</option>,
65           <option>-XUnboxedTuples</option>,
66           <option>-XTypeSynonymInstances</option>,
67           <option>-XStandaloneDeriving</option>,
68           <option>-XDeriveDataTypeable</option>,
69           <option>-XFlexibleContexts</option>,
70           <option>-XFlexibleInstances</option>,
71           <option>-XConstrainedClassMethods</option>,
72           <option>-XMultiParamTypeClasses</option>,
73           <option>-XFunctionalDependencies</option>,
74           <option>-XMagicHash</option>,
75           <option>-XPolymorphicComponents</option>,
76           <option>-XExistentialQuantification</option>,
77           <option>-XUnicodeSyntax</option>,
78           <option>-XPostfixOperators</option>,
79           <option>-XPatternGuards</option>,
80           <option>-XLiberalTypeSynonyms</option>,
81           <option>-XRankNTypes</option>,
82           <option>-XImpredicativeTypes</option>,
83           <option>-XTypeOperators</option>,
84           <option>-XRecursiveDo</option>,
85           <option>-XParallelListComp</option>,
86           <option>-XEmptyDataDecls</option>,
87           <option>-XKindSignatures</option>,
88           <option>-XGeneralizedNewtypeDeriving</option>,
89           <option>-XTypeFamilies</option>.
90             Enabling these options is the <emphasis>only</emphasis> 
91             effect of <option>-fglasgow-exts</option>.
92           We are trying to move away from this portmanteau flag, 
93           and towards enabling features individually.</para>
94
95   </sect1>
96
97 <!-- UNBOXED TYPES AND PRIMITIVE OPERATIONS -->
98 <sect1 id="primitives">
99   <title>Unboxed types and primitive operations</title>
100
101 <para>GHC is built on a raft of primitive data types and operations;
102 "primitive" in the sense that they cannot be defined in Haskell itself.
103 While you really can use this stuff to write fast code,
104   we generally find it a lot less painful, and more satisfying in the
105   long run, to use higher-level language features and libraries.  With
106   any luck, the code you write will be optimised to the efficient
107   unboxed version in any case.  And if it isn't, we'd like to know
108   about it.</para>
109
110 <para>All these primitive data types and operations are exported by the 
111 library <literal>GHC.Prim</literal>, for which there is 
112 <ulink url="../libraries/base/GHC.Prim.html">detailed online documentation</ulink>.
113 (This documentation is generated from the file <filename>compiler/prelude/primops.txt.pp</filename>.)
114 </para>
115 <para>
116 If you want to mention any of the primitive data types or operations in your
117 program, you must first import <literal>GHC.Prim</literal> to bring them
118 into scope.  Many of them have names ending in "&num;", and to mention such
119 names you need the <option>-XMagicHash</option> extension (<xref linkend="magic-hash"/>).
120 </para>
121
122 <para>The primops make extensive use of <link linkend="glasgow-unboxed">unboxed types</link> 
123 and <link linkend="unboxed-tuples">unboxed tuples</link>, which
124 we briefly summarise here. </para>
125   
126 <sect2 id="glasgow-unboxed">
127 <title>Unboxed types
128 </title>
129
130 <para>
131 <indexterm><primary>Unboxed types (Glasgow extension)</primary></indexterm>
132 </para>
133
134 <para>Most types in GHC are <firstterm>boxed</firstterm>, which means
135 that values of that type are represented by a pointer to a heap
136 object.  The representation of a Haskell <literal>Int</literal>, for
137 example, is a two-word heap object.  An <firstterm>unboxed</firstterm>
138 type, however, is represented by the value itself, no pointers or heap
139 allocation are involved.
140 </para>
141
142 <para>
143 Unboxed types correspond to the &ldquo;raw machine&rdquo; types you
144 would use in C: <literal>Int&num;</literal> (long int),
145 <literal>Double&num;</literal> (double), <literal>Addr&num;</literal>
146 (void *), etc.  The <emphasis>primitive operations</emphasis>
147 (PrimOps) on these types are what you might expect; e.g.,
148 <literal>(+&num;)</literal> is addition on
149 <literal>Int&num;</literal>s, and is the machine-addition that we all
150 know and love&mdash;usually one instruction.
151 </para>
152
153 <para>
154 Primitive (unboxed) types cannot be defined in Haskell, and are
155 therefore built into the language and compiler.  Primitive types are
156 always unlifted; that is, a value of a primitive type cannot be
157 bottom.  We use the convention (but it is only a convention) 
158 that primitive types, values, and
159 operations have a <literal>&num;</literal> suffix (see <xref linkend="magic-hash"/>).
160 For some primitive types we have special syntax for literals, also
161 described in the <link linkend="magic-hash">same section</link>.
162 </para>
163
164 <para>
165 Primitive values are often represented by a simple bit-pattern, such
166 as <literal>Int&num;</literal>, <literal>Float&num;</literal>,
167 <literal>Double&num;</literal>.  But this is not necessarily the case:
168 a primitive value might be represented by a pointer to a
169 heap-allocated object.  Examples include
170 <literal>Array&num;</literal>, the type of primitive arrays.  A
171 primitive array is heap-allocated because it is too big a value to fit
172 in a register, and would be too expensive to copy around; in a sense,
173 it is accidental that it is represented by a pointer.  If a pointer
174 represents a primitive value, then it really does point to that value:
175 no unevaluated thunks, no indirections&hellip;nothing can be at the
176 other end of the pointer than the primitive value.
177 A numerically-intensive program using unboxed types can
178 go a <emphasis>lot</emphasis> faster than its &ldquo;standard&rdquo;
179 counterpart&mdash;we saw a threefold speedup on one example.
180 </para>
181
182 <para>
183 There are some restrictions on the use of primitive types:
184 <itemizedlist>
185 <listitem><para>The main restriction
186 is that you can't pass a primitive value to a polymorphic
187 function or store one in a polymorphic data type.  This rules out
188 things like <literal>[Int&num;]</literal> (i.e. lists of primitive
189 integers).  The reason for this restriction is that polymorphic
190 arguments and constructor fields are assumed to be pointers: if an
191 unboxed integer is stored in one of these, the garbage collector would
192 attempt to follow it, leading to unpredictable space leaks.  Or a
193 <function>seq</function> operation on the polymorphic component may
194 attempt to dereference the pointer, with disastrous results.  Even
195 worse, the unboxed value might be larger than a pointer
196 (<literal>Double&num;</literal> for instance).
197 </para>
198 </listitem>
199 <listitem><para> You cannot define a newtype whose representation type
200 (the argument type of the data constructor) is an unboxed type.  Thus,
201 this is illegal:
202 <programlisting>
203   newtype A = MkA Int#
204 </programlisting>
205 </para></listitem>
206 <listitem><para> You cannot bind a variable with an unboxed type
207 in a <emphasis>top-level</emphasis> binding.
208 </para></listitem>
209 <listitem><para> You cannot bind a variable with an unboxed type
210 in a <emphasis>recursive</emphasis> binding.
211 </para></listitem>
212 <listitem><para> You may bind unboxed variables in a (non-recursive,
213 non-top-level) pattern binding, but any such variable causes the entire
214 pattern-match
215 to become strict.  For example:
216 <programlisting>
217   data Foo = Foo Int Int#
218
219   f x = let (Foo a b, w) = ..rhs.. in ..body..
220 </programlisting>
221 Since <literal>b</literal> has type <literal>Int#</literal>, the entire pattern
222 match
223 is strict, and the program behaves as if you had written
224 <programlisting>
225   data Foo = Foo Int Int#
226
227   f x = case ..rhs.. of { (Foo a b, w) -> ..body.. }
228 </programlisting>
229 </para>
230 </listitem>
231 </itemizedlist>
232 </para>
233
234 </sect2>
235
236 <sect2 id="unboxed-tuples">
237 <title>Unboxed Tuples
238 </title>
239
240 <para>
241 Unboxed tuples aren't really exported by <literal>GHC.Exts</literal>,
242 they're available by default with <option>-fglasgow-exts</option>.  An
243 unboxed tuple looks like this:
244 </para>
245
246 <para>
247
248 <programlisting>
249 (# e_1, ..., e_n #)
250 </programlisting>
251
252 </para>
253
254 <para>
255 where <literal>e&lowbar;1..e&lowbar;n</literal> are expressions of any
256 type (primitive or non-primitive).  The type of an unboxed tuple looks
257 the same.
258 </para>
259
260 <para>
261 Unboxed tuples are used for functions that need to return multiple
262 values, but they avoid the heap allocation normally associated with
263 using fully-fledged tuples.  When an unboxed tuple is returned, the
264 components are put directly into registers or on the stack; the
265 unboxed tuple itself does not have a composite representation.  Many
266 of the primitive operations listed in <literal>primops.txt.pp</literal> return unboxed
267 tuples.
268 In particular, the <literal>IO</literal> and <literal>ST</literal> monads use unboxed
269 tuples to avoid unnecessary allocation during sequences of operations.
270 </para>
271
272 <para>
273 There are some pretty stringent restrictions on the use of unboxed tuples:
274 <itemizedlist>
275 <listitem>
276
277 <para>
278 Values of unboxed tuple types are subject to the same restrictions as
279 other unboxed types; i.e. they may not be stored in polymorphic data
280 structures or passed to polymorphic functions.
281
282 </para>
283 </listitem>
284 <listitem>
285
286 <para>
287 No variable can have an unboxed tuple type, nor may a constructor or function
288 argument have an unboxed tuple type.  The following are all illegal:
289
290
291 <programlisting>
292   data Foo = Foo (# Int, Int #)
293
294   f :: (# Int, Int #) -&#62; (# Int, Int #)
295   f x = x
296
297   g :: (# Int, Int #) -&#62; Int
298   g (# a,b #) = a
299
300   h x = let y = (# x,x #) in ...
301 </programlisting>
302 </para>
303 </listitem>
304 </itemizedlist>
305 </para>
306 <para>
307 The typical use of unboxed tuples is simply to return multiple values,
308 binding those multiple results with a <literal>case</literal> expression, thus:
309 <programlisting>
310   f x y = (# x+1, y-1 #)
311   g x = case f x x of { (# a, b #) -&#62; a + b }
312 </programlisting>
313 You can have an unboxed tuple in a pattern binding, thus
314 <programlisting>
315   f x = let (# p,q #) = h x in ..body..
316 </programlisting>
317 If the types of <literal>p</literal> and <literal>q</literal> are not unboxed,
318 the resulting binding is lazy like any other Haskell pattern binding.  The 
319 above example desugars like this:
320 <programlisting>
321   f x = let t = case h x o f{ (# p,q #) -> (p,q)
322             p = fst t
323             q = snd t
324         in ..body..
325 </programlisting>
326 Indeed, the bindings can even be recursive.
327 </para>
328
329 </sect2>
330 </sect1>
331
332
333 <!-- ====================== SYNTACTIC EXTENSIONS =======================  -->
334
335 <sect1 id="syntax-extns">
336 <title>Syntactic extensions</title>
337  
338     <sect2 id="unicode-syntax">
339       <title>Unicode syntax</title>
340       <para>The language
341       extension <option>-XUnicodeSyntax</option><indexterm><primary><option>-XUnicodeSyntax</option></primary></indexterm>
342       enables Unicode characters to be used to stand for certain ASCII
343       character sequences.  The following alternatives are provided:</para>
344
345       <informaltable>
346         <tgroup cols="2" align="left" colsep="1" rowsep="1">
347           <thead>
348             <row>
349               <entry>ASCII</entry>
350               <entry>Unicode alternative</entry>
351               <entry>Code point</entry>
352               <entry>Name</entry>
353             </row>
354           </thead>
355           <tbody>
356             <row>
357               <entry><literal>::</literal></entry>
358               <entry>::</entry> <!-- no special char, apparently -->
359               <entry>0x2237</entry>
360               <entry>PROPORTION</entry>
361             </row>
362           </tbody>
363           <tbody>
364             <row>
365               <entry><literal>=&gt;</literal></entry>
366               <entry>&rArr;</entry>
367               <entry>0x21D2</entry>
368               <entry>RIGHTWARDS DOUBLE ARROW</entry>
369             </row>
370           </tbody>
371           <tbody>
372             <row>
373               <entry><literal>forall</literal></entry>
374               <entry>&forall;</entry>
375               <entry>0x2200</entry>
376               <entry>FOR ALL</entry>
377             </row>
378           </tbody>
379           <tbody>
380             <row>
381               <entry><literal>-&gt;</literal></entry>
382               <entry>&rarr;</entry>
383               <entry>0x2192</entry>
384               <entry>RIGHTWARDS ARROW</entry>
385             </row>
386           </tbody>
387           <tbody>
388             <row>
389               <entry><literal>&lt;-</literal></entry>
390               <entry>&larr;</entry>
391               <entry>0x2190</entry>
392               <entry>LEFTWARDS ARROW</entry>
393             </row>
394           </tbody>
395           <tbody>
396             <row>
397               <entry>..</entry>
398               <entry>&hellip;</entry>
399               <entry>0x22EF</entry>
400               <entry>MIDLINE HORIZONTAL ELLIPSIS</entry>
401             </row>
402           </tbody>
403         </tgroup>
404       </informaltable>
405     </sect2>
406
407     <sect2 id="magic-hash">
408       <title>The magic hash</title>
409       <para>The language extension <option>-XMagicHash</option> allows "&num;" as a
410         postfix modifier to identifiers.  Thus, "x&num;" is a valid variable, and "T&num;" is
411         a valid type constructor or data constructor.</para>
412
413       <para>The hash sign does not change sematics at all.  We tend to use variable
414         names ending in "&num;" for unboxed values or types (e.g. <literal>Int&num;</literal>), 
415         but there is no requirement to do so; they are just plain ordinary variables.
416         Nor does the <option>-XMagicHash</option> extension bring anything into scope.
417         For example, to bring <literal>Int&num;</literal> into scope you must 
418         import <literal>GHC.Prim</literal> (see <xref linkend="primitives"/>); 
419         the <option>-XMagicHash</option> extension
420         then allows you to <emphasis>refer</emphasis> to the <literal>Int&num;</literal>
421         that is now in scope.</para>
422       <para> The <option>-XMagicHash</option> also enables some new forms of literals (see <xref linkend="glasgow-unboxed"/>):
423         <itemizedlist> 
424           <listitem><para> <literal>'x'&num;</literal> has type <literal>Char&num;</literal></para> </listitem>
425           <listitem><para> <literal>&quot;foo&quot;&num;</literal> has type <literal>Addr&num;</literal></para> </listitem>
426           <listitem><para> <literal>3&num;</literal> has type <literal>Int&num;</literal>. In general,
427           any Haskell 98 integer lexeme followed by a <literal>&num;</literal> is an <literal>Int&num;</literal> literal, e.g.
428             <literal>-0x3A&num;</literal> as well as <literal>32&num;</literal></para>.</listitem>
429           <listitem><para> <literal>3&num;&num;</literal> has type <literal>Word&num;</literal>. In general,
430           any non-negative Haskell 98 integer lexeme followed by <literal>&num;&num;</literal> 
431               is a <literal>Word&num;</literal>. </para> </listitem>
432           <listitem><para> <literal>3.2&num;</literal> has type <literal>Float&num;</literal>.</para> </listitem>
433           <listitem><para> <literal>3.2&num;&num;</literal> has type <literal>Double&num;</literal></para> </listitem>
434           </itemizedlist>
435       </para>
436    </sect2>
437
438     <sect2 id="new-qualified-operators">
439       <title>New qualified operator syntax</title>
440
441       <para>A new syntax for referencing qualified operators is
442         planned to be introduced by Haskell', and is enabled in GHC
443         with
444         the <option>-XNewQualifiedOperators</option><indexterm><primary><option>-XNewQualifiedOperators</option></primary></indexterm>
445         option.  In the new syntax, the prefix form of a qualified
446         operator is
447         written <literal><replaceable>module</replaceable>.(<replaceable>symbol</replaceable>)</literal>
448         (in Haskell 98 this would
449         be <literal>(<replaceable>module</replaceable>.<replaceable>symbol</replaceable>)</literal>),
450         and the infix form is
451         written <literal>`<replaceable>module</replaceable>.(<replaceable>symbol</replaceable>)`</literal>
452         (in Haskell 98 this would
453         be <literal>`<replaceable>module</replaceable>.<replaceable>symbol</replaceable>`</literal>.
454         For example:
455 <programlisting>
456   add x y = Prelude.(+) x y
457   subtract y = (`Prelude.(-)` y)
458 </programlisting>
459         The new form of qualified operators is intended to regularise
460         the syntax by eliminating odd cases
461         like <literal>Prelude..</literal>.  For example,
462         when <literal>NewQualifiedOperators</literal> is on, it is possible to
463         write the enumerated sequence <literal>[Monday..]</literal>
464         without spaces, whereas in Haskell 98 this would be a
465         reference to the operator &lsquo;<literal>.</literal>&lsquo;
466         from module <literal>Monday</literal>.</para>
467
468       <para>When <option>-XNewQualifiedOperators</option> is on, the old Haskell
469         98 syntax for qualified operators is not accepted, so this
470         option may cause existing Haskell 98 code to break.</para>
471
472     </sect2>
473         
474
475     <!-- ====================== HIERARCHICAL MODULES =======================  -->
476
477
478     <sect2 id="hierarchical-modules">
479       <title>Hierarchical Modules</title>
480
481       <para>GHC supports a small extension to the syntax of module
482       names: a module name is allowed to contain a dot
483       <literal>&lsquo;.&rsquo;</literal>.  This is also known as the
484       &ldquo;hierarchical module namespace&rdquo; extension, because
485       it extends the normally flat Haskell module namespace into a
486       more flexible hierarchy of modules.</para>
487
488       <para>This extension has very little impact on the language
489       itself; modules names are <emphasis>always</emphasis> fully
490       qualified, so you can just think of the fully qualified module
491       name as <quote>the module name</quote>.  In particular, this
492       means that the full module name must be given after the
493       <literal>module</literal> keyword at the beginning of the
494       module; for example, the module <literal>A.B.C</literal> must
495       begin</para>
496
497 <programlisting>module A.B.C</programlisting>
498
499
500       <para>It is a common strategy to use the <literal>as</literal>
501       keyword to save some typing when using qualified names with
502       hierarchical modules.  For example:</para>
503
504 <programlisting>
505 import qualified Control.Monad.ST.Strict as ST
506 </programlisting>
507
508       <para>For details on how GHC searches for source and interface
509       files in the presence of hierarchical modules, see <xref
510       linkend="search-path"/>.</para>
511
512       <para>GHC comes with a large collection of libraries arranged
513       hierarchically; see the accompanying <ulink
514       url="../libraries/index.html">library
515       documentation</ulink>.  More libraries to install are available
516       from <ulink
517       url="http://hackage.haskell.org/packages/hackage.html">HackageDB</ulink>.</para>
518     </sect2>
519
520     <!-- ====================== PATTERN GUARDS =======================  -->
521
522 <sect2 id="pattern-guards">
523 <title>Pattern guards</title>
524
525 <para>
526 <indexterm><primary>Pattern guards (Glasgow extension)</primary></indexterm>
527 The discussion that follows is an abbreviated version of Simon Peyton Jones's original <ulink url="http://research.microsoft.com/~simonpj/Haskell/guards.html">proposal</ulink>. (Note that the proposal was written before pattern guards were implemented, so refers to them as unimplemented.)
528 </para>
529
530 <para>
531 Suppose we have an abstract data type of finite maps, with a
532 lookup operation:
533
534 <programlisting>
535 lookup :: FiniteMap -> Int -> Maybe Int
536 </programlisting>
537
538 The lookup returns <function>Nothing</function> if the supplied key is not in the domain of the mapping, and <function>(Just v)</function> otherwise,
539 where <varname>v</varname> is the value that the key maps to.  Now consider the following definition:
540 </para>
541
542 <programlisting>
543 clunky env var1 var2 | ok1 &amp;&amp; ok2 = val1 + val2
544 | otherwise  = var1 + var2
545 where
546   m1 = lookup env var1
547   m2 = lookup env var2
548   ok1 = maybeToBool m1
549   ok2 = maybeToBool m2
550   val1 = expectJust m1
551   val2 = expectJust m2
552 </programlisting>
553
554 <para>
555 The auxiliary functions are 
556 </para>
557
558 <programlisting>
559 maybeToBool :: Maybe a -&gt; Bool
560 maybeToBool (Just x) = True
561 maybeToBool Nothing  = False
562
563 expectJust :: Maybe a -&gt; a
564 expectJust (Just x) = x
565 expectJust Nothing  = error "Unexpected Nothing"
566 </programlisting>
567
568 <para>
569 What is <function>clunky</function> doing? The guard <literal>ok1 &amp;&amp;
570 ok2</literal> checks that both lookups succeed, using
571 <function>maybeToBool</function> to convert the <function>Maybe</function>
572 types to booleans. The (lazily evaluated) <function>expectJust</function>
573 calls extract the values from the results of the lookups, and binds the
574 returned values to <varname>val1</varname> and <varname>val2</varname>
575 respectively.  If either lookup fails, then clunky takes the
576 <literal>otherwise</literal> case and returns the sum of its arguments.
577 </para>
578
579 <para>
580 This is certainly legal Haskell, but it is a tremendously verbose and
581 un-obvious way to achieve the desired effect.  Arguably, a more direct way
582 to write clunky would be to use case expressions:
583 </para>
584
585 <programlisting>
586 clunky env var1 var2 = case lookup env var1 of
587   Nothing -&gt; fail
588   Just val1 -&gt; case lookup env var2 of
589     Nothing -&gt; fail
590     Just val2 -&gt; val1 + val2
591 where
592   fail = var1 + var2
593 </programlisting>
594
595 <para>
596 This is a bit shorter, but hardly better.  Of course, we can rewrite any set
597 of pattern-matching, guarded equations as case expressions; that is
598 precisely what the compiler does when compiling equations! The reason that
599 Haskell provides guarded equations is because they allow us to write down
600 the cases we want to consider, one at a time, independently of each other. 
601 This structure is hidden in the case version.  Two of the right-hand sides
602 are really the same (<function>fail</function>), and the whole expression
603 tends to become more and more indented. 
604 </para>
605
606 <para>
607 Here is how I would write clunky:
608 </para>
609
610 <programlisting>
611 clunky env var1 var2
612   | Just val1 &lt;- lookup env var1
613   , Just val2 &lt;- lookup env var2
614   = val1 + val2
615 ...other equations for clunky...
616 </programlisting>
617
618 <para>
619 The semantics should be clear enough.  The qualifiers are matched in order. 
620 For a <literal>&lt;-</literal> qualifier, which I call a pattern guard, the
621 right hand side is evaluated and matched against the pattern on the left. 
622 If the match fails then the whole guard fails and the next equation is
623 tried.  If it succeeds, then the appropriate binding takes place, and the
624 next qualifier is matched, in the augmented environment.  Unlike list
625 comprehensions, however, the type of the expression to the right of the
626 <literal>&lt;-</literal> is the same as the type of the pattern to its
627 left.  The bindings introduced by pattern guards scope over all the
628 remaining guard qualifiers, and over the right hand side of the equation.
629 </para>
630
631 <para>
632 Just as with list comprehensions, boolean expressions can be freely mixed
633 with among the pattern guards.  For example:
634 </para>
635
636 <programlisting>
637 f x | [y] &lt;- x
638     , y > 3
639     , Just z &lt;- h y
640     = ...
641 </programlisting>
642
643 <para>
644 Haskell's current guards therefore emerge as a special case, in which the
645 qualifier list has just one element, a boolean expression.
646 </para>
647 </sect2>
648
649     <!-- ===================== View patterns ===================  -->
650
651 <sect2 id="view-patterns">
652 <title>View patterns
653 </title>
654
655 <para>
656 View patterns are enabled by the flag <literal>-XViewPatterns</literal>.
657 More information and examples of view patterns can be found on the
658 <ulink url="http://hackage.haskell.org/trac/ghc/wiki/ViewPatterns">Wiki
659 page</ulink>.
660 </para>
661
662 <para>
663 View patterns are somewhat like pattern guards that can be nested inside
664 of other patterns.  They are a convenient way of pattern-matching
665 against values of abstract types. For example, in a programming language
666 implementation, we might represent the syntax of the types of the
667 language as follows:
668
669 <programlisting>
670 type Typ
671  
672 data TypView = Unit
673              | Arrow Typ Typ
674
675 view :: Type -> TypeView
676
677 -- additional operations for constructing Typ's ...
678 </programlisting>
679
680 The representation of Typ is held abstract, permitting implementations
681 to use a fancy representation (e.g., hash-consing to manage sharing).
682
683 Without view patterns, using this signature a little inconvenient: 
684 <programlisting>
685 size :: Typ -> Integer
686 size t = case view t of
687   Unit -> 1
688   Arrow t1 t2 -> size t1 + size t2
689 </programlisting>
690
691 It is necessary to iterate the case, rather than using an equational
692 function definition. And the situation is even worse when the matching
693 against <literal>t</literal> is buried deep inside another pattern.
694 </para>
695
696 <para>
697 View patterns permit calling the view function inside the pattern and
698 matching against the result: 
699 <programlisting>
700 size (view -> Unit) = 1
701 size (view -> Arrow t1 t2) = size t1 + size t2
702 </programlisting>
703
704 That is, we add a new form of pattern, written
705 <replaceable>expression</replaceable> <literal>-></literal>
706 <replaceable>pattern</replaceable> that means "apply the expression to
707 whatever we're trying to match against, and then match the result of
708 that application against the pattern". The expression can be any Haskell
709 expression of function type, and view patterns can be used wherever
710 patterns are used.
711 </para>
712
713 <para>
714 The semantics of a pattern <literal>(</literal>
715 <replaceable>exp</replaceable> <literal>-></literal>
716 <replaceable>pat</replaceable> <literal>)</literal> are as follows:
717
718 <itemizedlist>
719
720 <listitem> Scoping:
721
722 <para>The variables bound by the view pattern are the variables bound by
723 <replaceable>pat</replaceable>.
724 </para>
725
726 <para>
727 Any variables in <replaceable>exp</replaceable> are bound occurrences,
728 but variables bound "to the left" in a pattern are in scope.  This
729 feature permits, for example, one argument to a function to be used in
730 the view of another argument.  For example, the function
731 <literal>clunky</literal> from <xref linkend="pattern-guards" /> can be
732 written using view patterns as follows:
733
734 <programlisting>
735 clunky env (lookup env -> Just val1) (lookup env -> Just val2) = val1 + val2
736 ...other equations for clunky...
737 </programlisting>
738 </para>
739
740 <para>
741 More precisely, the scoping rules are: 
742 <itemizedlist>
743 <listitem>
744 <para>
745 In a single pattern, variables bound by patterns to the left of a view
746 pattern expression are in scope. For example:
747 <programlisting>
748 example :: Maybe ((String -> Integer,Integer), String) -> Bool
749 example Just ((f,_), f -> 4) = True
750 </programlisting>
751
752 Additionally, in function definitions, variables bound by matching earlier curried
753 arguments may be used in view pattern expressions in later arguments:
754 <programlisting>
755 example :: (String -> Integer) -> String -> Bool
756 example f (f -> 4) = True
757 </programlisting>
758 That is, the scoping is the same as it would be if the curried arguments
759 were collected into a tuple.  
760 </para>
761 </listitem>
762
763 <listitem>
764 <para>
765 In mutually recursive bindings, such as <literal>let</literal>,
766 <literal>where</literal>, or the top level, view patterns in one
767 declaration may not mention variables bound by other declarations.  That
768 is, each declaration must be self-contained.  For example, the following
769 program is not allowed:
770 <programlisting>
771 let {(x -> y) = e1 ;
772      (y -> x) = e2 } in x
773 </programlisting>
774
775 (We may lift this
776 restriction in the future; the only cost is that type checking patterns
777 would get a little more complicated.)  
778
779
780 </para>
781 </listitem>
782 </itemizedlist>
783
784 </para>
785 </listitem>
786
787 <listitem><para> Typing: If <replaceable>exp</replaceable> has type
788 <replaceable>T1</replaceable> <literal>-></literal>
789 <replaceable>T2</replaceable> and <replaceable>pat</replaceable> matches
790 a <replaceable>T2</replaceable>, then the whole view pattern matches a
791 <replaceable>T1</replaceable>.
792 </para></listitem>
793
794 <listitem><para> Matching: To the equations in Section 3.17.3 of the
795 <ulink url="http://www.haskell.org/onlinereport/">Haskell 98
796 Report</ulink>, add the following:
797 <programlisting>
798 case v of { (e -> p) -> e1 ; _ -> e2 } 
799  = 
800 case (e v) of { p -> e1 ; _ -> e2 }
801 </programlisting>
802 That is, to match a variable <replaceable>v</replaceable> against a pattern
803 <literal>(</literal> <replaceable>exp</replaceable>
804 <literal>-></literal> <replaceable>pat</replaceable>
805 <literal>)</literal>, evaluate <literal>(</literal>
806 <replaceable>exp</replaceable> <replaceable> v</replaceable>
807 <literal>)</literal> and match the result against
808 <replaceable>pat</replaceable>.  
809 </para></listitem>
810
811 <listitem><para> Efficiency: When the same view function is applied in
812 multiple branches of a function definition or a case expression (e.g.,
813 in <literal>size</literal> above), GHC makes an attempt to collect these
814 applications into a single nested case expression, so that the view
815 function is only applied once.  Pattern compilation in GHC follows the
816 matrix algorithm described in Chapter 4 of <ulink
817 url="http://research.microsoft.com/~simonpj/Papers/slpj-book-1987/">The
818 Implementation of Functional Programming Languages</ulink>.  When the
819 top rows of the first column of a matrix are all view patterns with the
820 "same" expression, these patterns are transformed into a single nested
821 case.  This includes, for example, adjacent view patterns that line up
822 in a tuple, as in
823 <programlisting>
824 f ((view -> A, p1), p2) = e1
825 f ((view -> B, p3), p4) = e2
826 </programlisting>
827 </para>
828
829 <para> The current notion of when two view pattern expressions are "the
830 same" is very restricted: it is not even full syntactic equality.
831 However, it does include variables, literals, applications, and tuples;
832 e.g., two instances of <literal>view ("hi", "there")</literal> will be
833 collected.  However, the current implementation does not compare up to
834 alpha-equivalence, so two instances of <literal>(x, view x ->
835 y)</literal> will not be coalesced.
836 </para>
837
838 </listitem>
839
840 </itemizedlist>
841 </para>
842
843 </sect2>
844
845     <!-- ===================== Recursive do-notation ===================  -->
846
847 <sect2 id="mdo-notation">
848 <title>The recursive do-notation
849 </title>
850
851 <para> The recursive do-notation (also known as mdo-notation) is implemented as described in
852 <ulink url="http://citeseer.ist.psu.edu/erk02recursive.html">A recursive do for Haskell</ulink>,
853 by Levent Erkok, John Launchbury,
854 Haskell Workshop 2002, pages: 29-37. Pittsburgh, Pennsylvania. 
855 This paper is essential reading for anyone making non-trivial use of mdo-notation,
856 and we do not repeat it here.
857 </para>
858 <para>
859 The do-notation of Haskell does not allow <emphasis>recursive bindings</emphasis>,
860 that is, the variables bound in a do-expression are visible only in the textually following 
861 code block. Compare this to a let-expression, where bound variables are visible in the entire binding
862 group. It turns out that several applications can benefit from recursive bindings in
863 the do-notation, and this extension provides the necessary syntactic support.
864 </para>
865 <para>
866 Here is a simple (yet contrived) example:
867 </para>
868 <programlisting>
869 import Control.Monad.Fix
870
871 justOnes = mdo xs &lt;- Just (1:xs)
872                return xs
873 </programlisting>
874 <para>
875 As you can guess <literal>justOnes</literal> will evaluate to <literal>Just [1,1,1,...</literal>.
876 </para>
877
878 <para>
879 The Control.Monad.Fix library introduces the <literal>MonadFix</literal> class. It's definition is:
880 </para>
881 <programlisting>
882 class Monad m => MonadFix m where
883    mfix :: (a -> m a) -> m a
884 </programlisting>
885 <para>
886 The function <literal>mfix</literal>
887 dictates how the required recursion operation should be performed.  For example, 
888 <literal>justOnes</literal> desugars as follows:
889 <programlisting>
890 justOnes = mfix (\xs' -&gt; do { xs &lt;- Just (1:xs'); return xs }
891 </programlisting>
892 For full details of the way in which mdo is typechecked and desugared, see 
893 the paper <ulink url="http://citeseer.ist.psu.edu/erk02recursive.html">A recursive do for Haskell</ulink>.
894 In particular, GHC implements the segmentation technique described in Section 3.2 of the paper.
895 </para>
896 <para>
897 If recursive bindings are required for a monad,
898 then that monad must be declared an instance of the <literal>MonadFix</literal> class.
899 The following instances of <literal>MonadFix</literal> are automatically provided: List, Maybe, IO. 
900 Furthermore, the Control.Monad.ST and Control.Monad.ST.Lazy modules provide the instances of the MonadFix class 
901 for Haskell's internal state monad (strict and lazy, respectively).
902 </para>
903 <para>
904 Here are some important points in using the recursive-do notation:
905 <itemizedlist>
906 <listitem><para>
907 The recursive version of the do-notation uses the keyword <literal>mdo</literal> (rather
908 than <literal>do</literal>).
909 </para></listitem>
910
911 <listitem><para>
912 It is enabled with the flag <literal>-XRecursiveDo</literal>, which is in turn implied by
913 <literal>-fglasgow-exts</literal>.
914 </para></listitem>
915
916 <listitem><para>
917 Unlike ordinary do-notation, but like <literal>let</literal> and <literal>where</literal> bindings,
918 name shadowing is not allowed; that is, all the names bound in a single <literal>mdo</literal> must
919 be distinct (Section 3.3 of the paper).
920 </para></listitem>
921
922 <listitem><para>
923 Variables bound by a <literal>let</literal> statement in an <literal>mdo</literal>
924 are monomorphic in the <literal>mdo</literal> (Section 3.1 of the paper).  However
925 GHC breaks the <literal>mdo</literal> into segments to enhance polymorphism,
926 and improve termination (Section 3.2 of the paper).
927 </para></listitem>
928 </itemizedlist>
929 </para>
930
931 <para>
932 Historical note: The old implementation of the mdo-notation (and most
933 of the existing documents) used the name
934 <literal>MonadRec</literal> for the class and the corresponding library.
935 This name is not supported by GHC.
936 </para>
937
938 </sect2>
939
940
941    <!-- ===================== PARALLEL LIST COMPREHENSIONS ===================  -->
942
943   <sect2 id="parallel-list-comprehensions">
944     <title>Parallel List Comprehensions</title>
945     <indexterm><primary>list comprehensions</primary><secondary>parallel</secondary>
946     </indexterm>
947     <indexterm><primary>parallel list comprehensions</primary>
948     </indexterm>
949
950     <para>Parallel list comprehensions are a natural extension to list
951     comprehensions.  List comprehensions can be thought of as a nice
952     syntax for writing maps and filters.  Parallel comprehensions
953     extend this to include the zipWith family.</para>
954
955     <para>A parallel list comprehension has multiple independent
956     branches of qualifier lists, each separated by a `|' symbol.  For
957     example, the following zips together two lists:</para>
958
959 <programlisting>
960    [ (x, y) | x &lt;- xs | y &lt;- ys ] 
961 </programlisting>
962
963     <para>The behavior of parallel list comprehensions follows that of
964     zip, in that the resulting list will have the same length as the
965     shortest branch.</para>
966
967     <para>We can define parallel list comprehensions by translation to
968     regular comprehensions.  Here's the basic idea:</para>
969
970     <para>Given a parallel comprehension of the form: </para>
971
972 <programlisting>
973    [ e | p1 &lt;- e11, p2 &lt;- e12, ... 
974        | q1 &lt;- e21, q2 &lt;- e22, ... 
975        ... 
976    ] 
977 </programlisting>
978
979     <para>This will be translated to: </para>
980
981 <programlisting>
982    [ e | ((p1,p2), (q1,q2), ...) &lt;- zipN [(p1,p2) | p1 &lt;- e11, p2 &lt;- e12, ...] 
983                                          [(q1,q2) | q1 &lt;- e21, q2 &lt;- e22, ...] 
984                                          ... 
985    ] 
986 </programlisting>
987
988     <para>where `zipN' is the appropriate zip for the given number of
989     branches.</para>
990
991   </sect2>
992   
993   <!-- ===================== TRANSFORM LIST COMPREHENSIONS ===================  -->
994
995   <sect2 id="generalised-list-comprehensions">
996     <title>Generalised (SQL-Like) List Comprehensions</title>
997     <indexterm><primary>list comprehensions</primary><secondary>generalised</secondary>
998     </indexterm>
999     <indexterm><primary>extended list comprehensions</primary>
1000     </indexterm>
1001     <indexterm><primary>group</primary></indexterm>
1002     <indexterm><primary>sql</primary></indexterm>
1003
1004
1005     <para>Generalised list comprehensions are a further enhancement to the
1006     list comprehension syntatic sugar to allow operations such as sorting
1007     and grouping which are familiar from SQL.   They are fully described in the
1008         paper <ulink url="http://research.microsoft.com/~simonpj/papers/list-comp">
1009           Comprehensive comprehensions: comprehensions with "order by" and "group by"</ulink>,
1010     except that the syntax we use differs slightly from the paper.</para>
1011 <para>The extension is enabled with the flag <option>-XTransformListComp</option>.</para>
1012 <para>Here is an example: 
1013 <programlisting>
1014 employees = [ ("Simon", "MS", 80)
1015 , ("Erik", "MS", 100)
1016 , ("Phil", "Ed", 40)
1017 , ("Gordon", "Ed", 45)
1018 , ("Paul", "Yale", 60)]
1019
1020 output = [ (the dept, sum salary)
1021 | (name, dept, salary) &lt;- employees
1022 , then group by dept
1023 , then sortWith by (sum salary)
1024 , then take 5 ]
1025 </programlisting>
1026 In this example, the list <literal>output</literal> would take on 
1027     the value:
1028     
1029 <programlisting>
1030 [("Yale", 60), ("Ed", 85), ("MS", 180)]
1031 </programlisting>
1032 </para>
1033 <para>There are three new keywords: <literal>group</literal>, <literal>by</literal>, and <literal>using</literal>.
1034 (The function <literal>sortWith</literal> is not a keyword; it is an ordinary
1035 function that is exported by <literal>GHC.Exts</literal>.)</para>
1036
1037 <para>There are five new forms of comprehension qualifier,
1038 all introduced by the (existing) keyword <literal>then</literal>:
1039     <itemizedlist>
1040     <listitem>
1041     
1042 <programlisting>
1043 then f
1044 </programlisting>
1045
1046     This statement requires that <literal>f</literal> have the type <literal>
1047     forall a. [a] -> [a]</literal>. You can see an example of it's use in the
1048     motivating example, as this form is used to apply <literal>take 5</literal>.
1049     
1050     </listitem>
1051     
1052     
1053     <listitem>
1054 <para>
1055 <programlisting>
1056 then f by e
1057 </programlisting>
1058
1059     This form is similar to the previous one, but allows you to create a function
1060     which will be passed as the first argument to f. As a consequence f must have 
1061     the type <literal>forall a. (a -> t) -> [a] -> [a]</literal>. As you can see
1062     from the type, this function lets f &quot;project out&quot; some information 
1063     from the elements of the list it is transforming.</para>
1064
1065     <para>An example is shown in the opening example, where <literal>sortWith</literal> 
1066     is supplied with a function that lets it find out the <literal>sum salary</literal> 
1067     for any item in the list comprehension it transforms.</para>
1068
1069     </listitem>
1070
1071
1072     <listitem>
1073
1074 <programlisting>
1075 then group by e using f
1076 </programlisting>
1077
1078     <para>This is the most general of the grouping-type statements. In this form,
1079     f is required to have type <literal>forall a. (a -> t) -> [a] -> [[a]]</literal>.
1080     As with the <literal>then f by e</literal> case above, the first argument
1081     is a function supplied to f by the compiler which lets it compute e on every
1082     element of the list being transformed. However, unlike the non-grouping case,
1083     f additionally partitions the list into a number of sublists: this means that
1084     at every point after this statement, binders occurring before it in the comprehension
1085     refer to <emphasis>lists</emphasis> of possible values, not single values. To help understand
1086     this, let's look at an example:</para>
1087     
1088 <programlisting>
1089 -- This works similarly to groupWith in GHC.Exts, but doesn't sort its input first
1090 groupRuns :: Eq b => (a -> b) -> [a] -> [[a]]
1091 groupRuns f = groupBy (\x y -> f x == f y)
1092
1093 output = [ (the x, y)
1094 | x &lt;- ([1..3] ++ [1..2])
1095 , y &lt;- [4..6]
1096 , then group by x using groupRuns ]
1097 </programlisting>
1098
1099     <para>This results in the variable <literal>output</literal> taking on the value below:</para>
1100
1101 <programlisting>
1102 [(1, [4, 5, 6]), (2, [4, 5, 6]), (3, [4, 5, 6]), (1, [4, 5, 6]), (2, [4, 5, 6])]
1103 </programlisting>
1104
1105     <para>Note that we have used the <literal>the</literal> function to change the type 
1106     of x from a list to its original numeric type. The variable y, in contrast, is left 
1107     unchanged from the list form introduced by the grouping.</para>
1108
1109     </listitem>
1110
1111     <listitem>
1112
1113 <programlisting>
1114 then group by e
1115 </programlisting>
1116
1117     <para>This form of grouping is essentially the same as the one described above. However,
1118     since no function to use for the grouping has been supplied it will fall back on the
1119     <literal>groupWith</literal> function defined in 
1120     <ulink url="../libraries/base/GHC-Exts.html"><literal>GHC.Exts</literal></ulink>. This
1121     is the form of the group statement that we made use of in the opening example.</para>
1122
1123     </listitem>
1124     
1125     
1126     <listitem>
1127
1128 <programlisting>
1129 then group using f
1130 </programlisting>
1131
1132     <para>With this form of the group statement, f is required to simply have the type
1133     <literal>forall a. [a] -> [[a]]</literal>, which will be used to group up the
1134     comprehension so far directly. An example of this form is as follows:</para>
1135     
1136 <programlisting>
1137 output = [ x
1138 | y &lt;- [1..5]
1139 , x &lt;- "hello"
1140 , then group using inits]
1141 </programlisting>
1142
1143     <para>This will yield a list containing every prefix of the word "hello" written out 5 times:</para>
1144
1145 <programlisting>
1146 ["","h","he","hel","hell","hello","helloh","hellohe","hellohel","hellohell","hellohello","hellohelloh",...]
1147 </programlisting>
1148
1149     </listitem>
1150 </itemizedlist>
1151 </para>
1152   </sect2>
1153
1154    <!-- ===================== REBINDABLE SYNTAX ===================  -->
1155
1156 <sect2 id="rebindable-syntax">
1157 <title>Rebindable syntax and the implicit Prelude import</title>
1158
1159  <para><indexterm><primary>-XNoImplicitPrelude
1160  option</primary></indexterm> GHC normally imports
1161  <filename>Prelude.hi</filename> files for you.  If you'd
1162  rather it didn't, then give it a
1163  <option>-XNoImplicitPrelude</option> option.  The idea is
1164  that you can then import a Prelude of your own.  (But don't
1165  call it <literal>Prelude</literal>; the Haskell module
1166  namespace is flat, and you must not conflict with any
1167  Prelude module.)</para>
1168
1169             <para>Suppose you are importing a Prelude of your own
1170               in order to define your own numeric class
1171             hierarchy.  It completely defeats that purpose if the
1172             literal "1" means "<literal>Prelude.fromInteger
1173             1</literal>", which is what the Haskell Report specifies.
1174             So the <option>-XNoImplicitPrelude</option> 
1175               flag <emphasis>also</emphasis> causes
1176             the following pieces of built-in syntax to refer to
1177             <emphasis>whatever is in scope</emphasis>, not the Prelude
1178             versions:
1179             <itemizedlist>
1180               <listitem>
1181                 <para>An integer literal <literal>368</literal> means
1182                 "<literal>fromInteger (368::Integer)</literal>", rather than
1183                 "<literal>Prelude.fromInteger (368::Integer)</literal>".
1184 </para> </listitem>         
1185
1186       <listitem><para>Fractional literals are handed in just the same way,
1187           except that the translation is 
1188               <literal>fromRational (3.68::Rational)</literal>.
1189 </para> </listitem>         
1190
1191           <listitem><para>The equality test in an overloaded numeric pattern
1192               uses whatever <literal>(==)</literal> is in scope.
1193 </para> </listitem>         
1194
1195           <listitem><para>The subtraction operation, and the
1196           greater-than-or-equal test, in <literal>n+k</literal> patterns
1197               use whatever <literal>(-)</literal> and <literal>(>=)</literal> are in scope.
1198               </para></listitem>
1199
1200               <listitem>
1201                 <para>Negation (e.g. "<literal>- (f x)</literal>")
1202                 means "<literal>negate (f x)</literal>", both in numeric
1203                 patterns, and expressions.
1204               </para></listitem>
1205
1206               <listitem>
1207           <para>"Do" notation is translated using whatever
1208               functions <literal>(>>=)</literal>,
1209               <literal>(>>)</literal>, and <literal>fail</literal>,
1210               are in scope (not the Prelude
1211               versions).  List comprehensions, mdo (<xref linkend="mdo-notation"/>), and parallel array
1212               comprehensions, are unaffected.  </para></listitem>
1213
1214               <listitem>
1215                 <para>Arrow
1216                 notation (see <xref linkend="arrow-notation"/>)
1217                 uses whatever <literal>arr</literal>,
1218                 <literal>(>>>)</literal>, <literal>first</literal>,
1219                 <literal>app</literal>, <literal>(|||)</literal> and
1220                 <literal>loop</literal> functions are in scope. But unlike the
1221                 other constructs, the types of these functions must match the
1222                 Prelude types very closely.  Details are in flux; if you want
1223                 to use this, ask!
1224               </para></listitem>
1225             </itemizedlist>
1226 In all cases (apart from arrow notation), the static semantics should be that of the desugared form,
1227 even if that is a little unexpected. For example, the 
1228 static semantics of the literal <literal>368</literal>
1229 is exactly that of <literal>fromInteger (368::Integer)</literal>; it's fine for
1230 <literal>fromInteger</literal> to have any of the types:
1231 <programlisting>
1232 fromInteger :: Integer -> Integer
1233 fromInteger :: forall a. Foo a => Integer -> a
1234 fromInteger :: Num a => a -> Integer
1235 fromInteger :: Integer -> Bool -> Bool
1236 </programlisting>
1237 </para>
1238                 
1239              <para>Be warned: this is an experimental facility, with
1240              fewer checks than usual.  Use <literal>-dcore-lint</literal>
1241              to typecheck the desugared program.  If Core Lint is happy
1242              you should be all right.</para>
1243
1244 </sect2>
1245
1246 <sect2 id="postfix-operators">
1247 <title>Postfix operators</title>
1248
1249 <para>
1250   The <option>-XPostfixOperators</option> flag enables a small
1251 extension to the syntax of left operator sections, which allows you to
1252 define postfix operators.  The extension is this: the left section
1253 <programlisting>
1254   (e !)
1255 </programlisting>
1256 is equivalent (from the point of view of both type checking and execution) to the expression
1257 <programlisting>
1258   ((!) e)
1259 </programlisting>
1260 (for any expression <literal>e</literal> and operator <literal>(!)</literal>.
1261 The strict Haskell 98 interpretation is that the section is equivalent to
1262 <programlisting>
1263   (\y -> (!) e y)
1264 </programlisting>
1265 That is, the operator must be a function of two arguments.  GHC allows it to
1266 take only one argument, and that in turn allows you to write the function
1267 postfix.
1268 </para>
1269 <para>The extension does not extend to the left-hand side of function
1270 definitions; you must define such a function in prefix form.</para>
1271
1272 </sect2>
1273
1274 <sect2 id="disambiguate-fields">
1275 <title>Record field disambiguation</title>
1276 <para>
1277 In record construction and record pattern matching
1278 it is entirely unambiguous which field is referred to, even if there are two different
1279 data types in scope with a common field name.  For example:
1280 <programlisting>
1281 module M where
1282   data S = MkS { x :: Int, y :: Bool }
1283
1284 module Foo where
1285   import M
1286
1287   data T = MkT { x :: Int }
1288   
1289   ok1 (MkS { x = n }) = n+1   -- Unambiguous
1290
1291   ok2 n = MkT { x = n+1 }     -- Unambiguous
1292
1293   bad1 k = k { x = 3 }  -- Ambiguous
1294   bad2 k = x k          -- Ambiguous
1295 </programlisting>
1296 Even though there are two <literal>x</literal>'s in scope,
1297 it is clear that the <literal>x</literal> in the pattern in the
1298 definition of <literal>ok1</literal> can only mean the field
1299 <literal>x</literal> from type <literal>S</literal>. Similarly for
1300 the function <literal>ok2</literal>.  However, in the record update
1301 in <literal>bad1</literal> and the record selection in <literal>bad2</literal>
1302 it is not clear which of the two types is intended.
1303 </para>
1304 <para>
1305 Haskell 98 regards all four as ambiguous, but with the
1306 <option>-XDisambiguateRecordFields</option> flag, GHC will accept
1307 the former two.  The rules are precisely the same as those for instance
1308 declarations in Haskell 98, where the method names on the left-hand side 
1309 of the method bindings in an instance declaration refer unambiguously
1310 to the method of that class (provided they are in scope at all), even
1311 if there are other variables in scope with the same name.
1312 This reduces the clutter of qualified names when you import two
1313 records from different modules that use the same field name.
1314 </para>
1315 </sect2>
1316
1317     <!-- ===================== Record puns ===================  -->
1318
1319 <sect2 id="record-puns">
1320 <title>Record puns
1321 </title>
1322
1323 <para>
1324 Record puns are enabled by the flag <literal>-XNamedFieldPuns</literal>.
1325 </para>
1326
1327 <para>
1328 When using records, it is common to write a pattern that binds a
1329 variable with the same name as a record field, such as:
1330
1331 <programlisting>
1332 data C = C {a :: Int}
1333 f (C {a = a}) = a
1334 </programlisting>
1335 </para>
1336
1337 <para>
1338 Record punning permits the variable name to be elided, so one can simply
1339 write
1340
1341 <programlisting>
1342 f (C {a}) = a
1343 </programlisting>
1344
1345 to mean the same pattern as above.  That is, in a record pattern, the
1346 pattern <literal>a</literal> expands into the pattern <literal>a =
1347 a</literal> for the same name <literal>a</literal>.  
1348 </para>
1349
1350 <para>
1351 Note that puns and other patterns can be mixed in the same record:
1352 <programlisting>
1353 data C = C {a :: Int, b :: Int}
1354 f (C {a, b = 4}) = a
1355 </programlisting>
1356 and that puns can be used wherever record patterns occur (e.g. in
1357 <literal>let</literal> bindings or at the top-level).  
1358 </para>
1359
1360 <para>
1361 Record punning can also be used in an expression, writing, for example,
1362 <programlisting>
1363 let a = 1 in C {a}
1364 </programlisting>
1365 instead of 
1366 <programlisting>
1367 let a = 1 in C {a = a}
1368 </programlisting>
1369
1370 Note that this expansion is purely syntactic, so the record pun
1371 expression refers to the nearest enclosing variable that is spelled the
1372 same as the field name.
1373 </para>
1374
1375 </sect2>
1376
1377     <!-- ===================== Record wildcards ===================  -->
1378
1379 <sect2 id="record-wildcards">
1380 <title>Record wildcards
1381 </title>
1382
1383 <para>
1384 Record wildcards are enabled by the flag <literal>-XRecordWildCards</literal>.
1385 </para>
1386
1387 <para>
1388 For records with many fields, it can be tiresome to write out each field
1389 individually in a record pattern, as in
1390 <programlisting>
1391 data C = C {a :: Int, b :: Int, c :: Int, d :: Int}
1392 f (C {a = 1, b = b, c = c, d = d}) = b + c + d
1393 </programlisting>
1394 </para>
1395
1396 <para>
1397 Record wildcard syntax permits a (<literal>..</literal>) in a record
1398 pattern, where each elided field <literal>f</literal> is replaced by the
1399 pattern <literal>f = f</literal>.  For example, the above pattern can be
1400 written as
1401 <programlisting>
1402 f (C {a = 1, ..}) = b + c + d
1403 </programlisting>
1404 </para>
1405
1406 <para>
1407 Note that wildcards can be mixed with other patterns, including puns
1408 (<xref linkend="record-puns"/>); for example, in a pattern <literal>C {a
1409 = 1, b, ..})</literal>.  Additionally, record wildcards can be used
1410 wherever record patterns occur, including in <literal>let</literal>
1411 bindings and at the top-level.  For example, the top-level binding
1412 <programlisting>
1413 C {a = 1, ..} = e
1414 </programlisting>
1415 defines <literal>b</literal>, <literal>c</literal>, and
1416 <literal>d</literal>.
1417 </para>
1418
1419 <para>
1420 Record wildcards can also be used in expressions, writing, for example,
1421
1422 <programlisting>
1423 let {a = 1; b = 2; c = 3; d = 4} in C {..}
1424 </programlisting>
1425
1426 in place of
1427
1428 <programlisting>
1429 let {a = 1; b = 2; c = 3; d = 4} in C {a=a, b=b, c=c, d=d}
1430 </programlisting>
1431
1432 Note that this expansion is purely syntactic, so the record wildcard
1433 expression refers to the nearest enclosing variables that are spelled
1434 the same as the omitted field names.
1435 </para>
1436
1437 </sect2>
1438
1439     <!-- ===================== Local fixity declarations ===================  -->
1440
1441 <sect2 id="local-fixity-declarations">
1442 <title>Local Fixity Declarations
1443 </title>
1444
1445 <para>A careful reading of the Haskell 98 Report reveals that fixity
1446 declarations (<literal>infix</literal>, <literal>infixl</literal>, and
1447 <literal>infixr</literal>) are permitted to appear inside local bindings
1448 such those introduced by <literal>let</literal> and
1449 <literal>where</literal>.  However, the Haskell Report does not specify
1450 the semantics of such bindings very precisely.
1451 </para>
1452
1453 <para>In GHC, a fixity declaration may accompany a local binding:
1454 <programlisting>
1455 let f = ...
1456     infixr 3 `f`
1457 in 
1458     ...
1459 </programlisting>
1460 and the fixity declaration applies wherever the binding is in scope.
1461 For example, in a <literal>let</literal>, it applies in the right-hand
1462 sides of other <literal>let</literal>-bindings and the body of the
1463 <literal>let</literal>C. Or, in recursive <literal>do</literal>
1464 expressions (<xref linkend="mdo-notation"/>), the local fixity
1465 declarations of a <literal>let</literal> statement scope over other
1466 statements in the group, just as the bound name does.
1467 </para>
1468
1469 <para>
1470 Moreover, a local fixity declaration *must* accompany a local binding of
1471 that name: it is not possible to revise the fixity of name bound
1472 elsewhere, as in
1473 <programlisting>
1474 let infixr 9 $ in ...
1475 </programlisting>
1476
1477 Because local fixity declarations are technically Haskell 98, no flag is
1478 necessary to enable them.
1479 </para>
1480 </sect2>
1481
1482 <sect2 id="package-imports">
1483   <title>Package-qualified imports</title>
1484
1485   <para>With the <option>-XPackageImports</option> flag, GHC allows
1486   import declarations to be qualified by the package name that the
1487     module is intended to be imported from.  For example:</para>
1488
1489 <programlisting>
1490 import "network" Network.Socket
1491 </programlisting>
1492   
1493   <para>would import the module <literal>Network.Socket</literal> from
1494     the package <literal>network</literal> (any version).  This may
1495     be used to disambiguate an import when the same module is
1496     available from multiple packages, or is present in both the
1497     current package being built and an external package.</para>
1498
1499   <para>Note: you probably don't need to use this feature, it was
1500     added mainly so that we can build backwards-compatible versions of
1501     packages when APIs change.  It can lead to fragile dependencies in
1502     the common case: modules occasionally move from one package to
1503     another, rendering any package-qualified imports broken.</para>
1504 </sect2>
1505
1506 <sect2 id="syntax-stolen">
1507 <title>Summary of stolen syntax</title>
1508
1509     <para>Turning on an option that enables special syntax
1510     <emphasis>might</emphasis> cause working Haskell 98 code to fail
1511     to compile, perhaps because it uses a variable name which has
1512     become a reserved word.  This section lists the syntax that is
1513     "stolen" by language extensions.
1514      We use
1515     notation and nonterminal names from the Haskell 98 lexical syntax
1516     (see the Haskell 98 Report).  
1517     We only list syntax changes here that might affect
1518     existing working programs (i.e. "stolen" syntax).  Many of these
1519     extensions will also enable new context-free syntax, but in all
1520     cases programs written to use the new syntax would not be
1521     compilable without the option enabled.</para>
1522
1523 <para>There are two classes of special
1524     syntax:
1525
1526     <itemizedlist>
1527       <listitem>
1528         <para>New reserved words and symbols: character sequences
1529         which are no longer available for use as identifiers in the
1530         program.</para>
1531       </listitem>
1532       <listitem>
1533         <para>Other special syntax: sequences of characters that have
1534         a different meaning when this particular option is turned
1535         on.</para>
1536       </listitem>
1537     </itemizedlist>
1538     
1539 The following syntax is stolen:
1540
1541     <variablelist>
1542       <varlistentry>
1543         <term>
1544           <literal>forall</literal>
1545           <indexterm><primary><literal>forall</literal></primary></indexterm>
1546         </term>
1547         <listitem><para>
1548         Stolen (in types) by: <option>-XScopedTypeVariables</option>,
1549             <option>-XLiberalTypeSynonyms</option>,
1550             <option>-XRank2Types</option>,
1551             <option>-XRankNTypes</option>,
1552             <option>-XPolymorphicComponents</option>,
1553             <option>-XExistentialQuantification</option>
1554           </para></listitem>
1555       </varlistentry>
1556
1557       <varlistentry>
1558         <term>
1559           <literal>mdo</literal>
1560           <indexterm><primary><literal>mdo</literal></primary></indexterm>
1561         </term>
1562         <listitem><para>
1563         Stolen by: <option>-XRecursiveDo</option>,
1564           </para></listitem>
1565       </varlistentry>
1566
1567       <varlistentry>
1568         <term>
1569           <literal>foreign</literal>
1570           <indexterm><primary><literal>foreign</literal></primary></indexterm>
1571         </term>
1572         <listitem><para>
1573         Stolen by: <option>-XForeignFunctionInterface</option>,
1574           </para></listitem>
1575       </varlistentry>
1576
1577       <varlistentry>
1578         <term>
1579           <literal>rec</literal>,
1580           <literal>proc</literal>, <literal>-&lt;</literal>,
1581           <literal>&gt;-</literal>, <literal>-&lt;&lt;</literal>,
1582           <literal>&gt;&gt;-</literal>, and <literal>(|</literal>,
1583           <literal>|)</literal> brackets
1584           <indexterm><primary><literal>proc</literal></primary></indexterm>
1585         </term>
1586         <listitem><para>
1587         Stolen by: <option>-XArrows</option>,
1588           </para></listitem>
1589       </varlistentry>
1590
1591       <varlistentry>
1592         <term>
1593           <literal>?<replaceable>varid</replaceable></literal>,
1594           <literal>%<replaceable>varid</replaceable></literal>
1595           <indexterm><primary>implicit parameters</primary></indexterm>
1596         </term>
1597         <listitem><para>
1598         Stolen by: <option>-XImplicitParams</option>,
1599           </para></listitem>
1600       </varlistentry>
1601
1602       <varlistentry>
1603         <term>
1604           <literal>[|</literal>,
1605           <literal>[e|</literal>, <literal>[p|</literal>,
1606           <literal>[d|</literal>, <literal>[t|</literal>,
1607           <literal>$(</literal>,
1608           <literal>$<replaceable>varid</replaceable></literal>
1609           <indexterm><primary>Template Haskell</primary></indexterm>
1610         </term>
1611         <listitem><para>
1612         Stolen by: <option>-XTemplateHaskell</option>,
1613           </para></listitem>
1614       </varlistentry>
1615
1616       <varlistentry>
1617         <term>
1618           <literal>[:<replaceable>varid</replaceable>|</literal>
1619           <indexterm><primary>quasi-quotation</primary></indexterm>
1620         </term>
1621         <listitem><para>
1622         Stolen by: <option>-XQuasiQuotes</option>,
1623           </para></listitem>
1624       </varlistentry>
1625
1626       <varlistentry>
1627         <term>
1628               <replaceable>varid</replaceable>{<literal>&num;</literal>},
1629               <replaceable>char</replaceable><literal>&num;</literal>,      
1630               <replaceable>string</replaceable><literal>&num;</literal>,    
1631               <replaceable>integer</replaceable><literal>&num;</literal>,    
1632               <replaceable>float</replaceable><literal>&num;</literal>,    
1633               <replaceable>float</replaceable><literal>&num;&num;</literal>,    
1634               <literal>(&num;</literal>, <literal>&num;)</literal>,         
1635         </term>
1636         <listitem><para>
1637         Stolen by: <option>-XMagicHash</option>,
1638           </para></listitem>
1639       </varlistentry>
1640     </variablelist>
1641 </para>
1642 </sect2>
1643 </sect1>
1644
1645
1646 <!-- TYPE SYSTEM EXTENSIONS -->
1647 <sect1 id="data-type-extensions">
1648 <title>Extensions to data types and type synonyms</title>
1649
1650 <sect2 id="nullary-types">
1651 <title>Data types with no constructors</title>
1652
1653 <para>With the <option>-fglasgow-exts</option> flag, GHC lets you declare
1654 a data type with no constructors.  For example:</para>
1655
1656 <programlisting>
1657   data S      -- S :: *
1658   data T a    -- T :: * -> *
1659 </programlisting>
1660
1661 <para>Syntactically, the declaration lacks the "= constrs" part.  The 
1662 type can be parameterised over types of any kind, but if the kind is
1663 not <literal>*</literal> then an explicit kind annotation must be used
1664 (see <xref linkend="kinding"/>).</para>
1665
1666 <para>Such data types have only one value, namely bottom.
1667 Nevertheless, they can be useful when defining "phantom types".</para>
1668 </sect2>
1669
1670 <sect2 id="infix-tycons">
1671 <title>Infix type constructors, classes, and type variables</title>
1672
1673 <para>
1674 GHC allows type constructors, classes, and type variables to be operators, and
1675 to be written infix, very much like expressions.  More specifically:
1676 <itemizedlist>
1677 <listitem><para>
1678   A type constructor or class can be an operator, beginning with a colon; e.g. <literal>:*:</literal>.
1679   The lexical syntax is the same as that for data constructors.
1680   </para></listitem>
1681 <listitem><para>
1682   Data type and type-synonym declarations can be written infix, parenthesised
1683   if you want further arguments.  E.g.
1684 <screen>
1685   data a :*: b = Foo a b
1686   type a :+: b = Either a b
1687   class a :=: b where ...
1688
1689   data (a :**: b) x = Baz a b x
1690   type (a :++: b) y = Either (a,b) y
1691 </screen>
1692   </para></listitem>
1693 <listitem><para>
1694   Types, and class constraints, can be written infix.  For example
1695   <screen>
1696         x :: Int :*: Bool
1697         f :: (a :=: b) => a -> b
1698   </screen>
1699   </para></listitem>
1700 <listitem><para>
1701   A type variable can be an (unqualified) operator e.g. <literal>+</literal>.
1702   The lexical syntax is the same as that for variable operators, excluding "(.)",
1703   "(!)", and "(*)".  In a binding position, the operator must be
1704   parenthesised.  For example:
1705 <programlisting>
1706    type T (+) = Int + Int
1707    f :: T Either
1708    f = Left 3
1709  
1710    liftA2 :: Arrow (~>)
1711           => (a -> b -> c) -> (e ~> a) -> (e ~> b) -> (e ~> c)
1712    liftA2 = ...
1713 </programlisting>
1714   </para></listitem>
1715 <listitem><para>
1716   Back-quotes work
1717   as for expressions, both for type constructors and type variables;  e.g. <literal>Int `Either` Bool</literal>, or
1718   <literal>Int `a` Bool</literal>.  Similarly, parentheses work the same; e.g.  <literal>(:*:) Int Bool</literal>.
1719   </para></listitem>
1720 <listitem><para>
1721   Fixities may be declared for type constructors, or classes, just as for data constructors.  However,
1722   one cannot distinguish between the two in a fixity declaration; a fixity declaration
1723   sets the fixity for a data constructor and the corresponding type constructor.  For example:
1724 <screen>
1725   infixl 7 T, :*:
1726 </screen>
1727   sets the fixity for both type constructor <literal>T</literal> and data constructor <literal>T</literal>,
1728   and similarly for <literal>:*:</literal>.
1729   <literal>Int `a` Bool</literal>.
1730   </para></listitem>
1731 <listitem><para>
1732   Function arrow is <literal>infixr</literal> with fixity 0.  (This might change; I'm not sure what it should be.)
1733   </para></listitem>
1734
1735 </itemizedlist>
1736 </para>
1737 </sect2>
1738
1739 <sect2 id="type-synonyms">
1740 <title>Liberalised type synonyms</title>
1741
1742 <para>
1743 Type synonyms are like macros at the type level, but Haskell 98 imposes many rules
1744 on individual synonym declarations.
1745 With the <option>-XLiberalTypeSynonyms</option> extension,
1746 GHC does validity checking on types <emphasis>only after expanding type synonyms</emphasis>.
1747 That means that GHC can be very much more liberal about type synonyms than Haskell 98. 
1748
1749 <itemizedlist>
1750 <listitem> <para>You can write a <literal>forall</literal> (including overloading)
1751 in a type synonym, thus:
1752 <programlisting>
1753   type Discard a = forall b. Show b => a -> b -> (a, String)
1754
1755   f :: Discard a
1756   f x y = (x, show y)
1757
1758   g :: Discard Int -> (Int,String)    -- A rank-2 type
1759   g f = f 3 True
1760 </programlisting>
1761 </para>
1762 </listitem>
1763
1764 <listitem><para>
1765 If you also use <option>-XUnboxedTuples</option>, 
1766 you can write an unboxed tuple in a type synonym:
1767 <programlisting>
1768   type Pr = (# Int, Int #)
1769
1770   h :: Int -> Pr
1771   h x = (# x, x #)
1772 </programlisting>
1773 </para></listitem>
1774
1775 <listitem><para>
1776 You can apply a type synonym to a forall type:
1777 <programlisting>
1778   type Foo a = a -> a -> Bool
1779  
1780   f :: Foo (forall b. b->b)
1781 </programlisting>
1782 After expanding the synonym, <literal>f</literal> has the legal (in GHC) type:
1783 <programlisting>
1784   f :: (forall b. b->b) -> (forall b. b->b) -> Bool
1785 </programlisting>
1786 </para></listitem>
1787
1788 <listitem><para>
1789 You can apply a type synonym to a partially applied type synonym:
1790 <programlisting>
1791   type Generic i o = forall x. i x -> o x
1792   type Id x = x
1793   
1794   foo :: Generic Id []
1795 </programlisting>
1796 After expanding the synonym, <literal>foo</literal> has the legal (in GHC) type:
1797 <programlisting>
1798   foo :: forall x. x -> [x]
1799 </programlisting>
1800 </para></listitem>
1801
1802 </itemizedlist>
1803 </para>
1804
1805 <para>
1806 GHC currently does kind checking before expanding synonyms (though even that
1807 could be changed.)
1808 </para>
1809 <para>
1810 After expanding type synonyms, GHC does validity checking on types, looking for
1811 the following mal-formedness which isn't detected simply by kind checking:
1812 <itemizedlist>
1813 <listitem><para>
1814 Type constructor applied to a type involving for-alls.
1815 </para></listitem>
1816 <listitem><para>
1817 Unboxed tuple on left of an arrow.
1818 </para></listitem>
1819 <listitem><para>
1820 Partially-applied type synonym.
1821 </para></listitem>
1822 </itemizedlist>
1823 So, for example,
1824 this will be rejected:
1825 <programlisting>
1826   type Pr = (# Int, Int #)
1827
1828   h :: Pr -> Int
1829   h x = ...
1830 </programlisting>
1831 because GHC does not allow  unboxed tuples on the left of a function arrow.
1832 </para>
1833 </sect2>
1834
1835
1836 <sect2 id="existential-quantification">
1837 <title>Existentially quantified data constructors
1838 </title>
1839
1840 <para>
1841 The idea of using existential quantification in data type declarations
1842 was suggested by Perry, and implemented in Hope+ (Nigel Perry, <emphasis>The Implementation
1843 of Practical Functional Programming Languages</emphasis>, PhD Thesis, University of
1844 London, 1991). It was later formalised by Laufer and Odersky
1845 (<emphasis>Polymorphic type inference and abstract data types</emphasis>,
1846 TOPLAS, 16(5), pp1411-1430, 1994).
1847 It's been in Lennart
1848 Augustsson's <command>hbc</command> Haskell compiler for several years, and
1849 proved very useful.  Here's the idea.  Consider the declaration:
1850 </para>
1851
1852 <para>
1853
1854 <programlisting>
1855   data Foo = forall a. MkFoo a (a -> Bool)
1856            | Nil
1857 </programlisting>
1858
1859 </para>
1860
1861 <para>
1862 The data type <literal>Foo</literal> has two constructors with types:
1863 </para>
1864
1865 <para>
1866
1867 <programlisting>
1868   MkFoo :: forall a. a -> (a -> Bool) -> Foo
1869   Nil   :: Foo
1870 </programlisting>
1871
1872 </para>
1873
1874 <para>
1875 Notice that the type variable <literal>a</literal> in the type of <function>MkFoo</function>
1876 does not appear in the data type itself, which is plain <literal>Foo</literal>.
1877 For example, the following expression is fine:
1878 </para>
1879
1880 <para>
1881
1882 <programlisting>
1883   [MkFoo 3 even, MkFoo 'c' isUpper] :: [Foo]
1884 </programlisting>
1885
1886 </para>
1887
1888 <para>
1889 Here, <literal>(MkFoo 3 even)</literal> packages an integer with a function
1890 <function>even</function> that maps an integer to <literal>Bool</literal>; and <function>MkFoo 'c'
1891 isUpper</function> packages a character with a compatible function.  These
1892 two things are each of type <literal>Foo</literal> and can be put in a list.
1893 </para>
1894
1895 <para>
1896 What can we do with a value of type <literal>Foo</literal>?.  In particular,
1897 what happens when we pattern-match on <function>MkFoo</function>?
1898 </para>
1899
1900 <para>
1901
1902 <programlisting>
1903   f (MkFoo val fn) = ???
1904 </programlisting>
1905
1906 </para>
1907
1908 <para>
1909 Since all we know about <literal>val</literal> and <function>fn</function> is that they
1910 are compatible, the only (useful) thing we can do with them is to
1911 apply <function>fn</function> to <literal>val</literal> to get a boolean.  For example:
1912 </para>
1913
1914 <para>
1915
1916 <programlisting>
1917   f :: Foo -> Bool
1918   f (MkFoo val fn) = fn val
1919 </programlisting>
1920
1921 </para>
1922
1923 <para>
1924 What this allows us to do is to package heterogeneous values
1925 together with a bunch of functions that manipulate them, and then treat
1926 that collection of packages in a uniform manner.  You can express
1927 quite a bit of object-oriented-like programming this way.
1928 </para>
1929
1930 <sect3 id="existential">
1931 <title>Why existential?
1932 </title>
1933
1934 <para>
1935 What has this to do with <emphasis>existential</emphasis> quantification?
1936 Simply that <function>MkFoo</function> has the (nearly) isomorphic type
1937 </para>
1938
1939 <para>
1940
1941 <programlisting>
1942   MkFoo :: (exists a . (a, a -> Bool)) -> Foo
1943 </programlisting>
1944
1945 </para>
1946
1947 <para>
1948 But Haskell programmers can safely think of the ordinary
1949 <emphasis>universally</emphasis> quantified type given above, thereby avoiding
1950 adding a new existential quantification construct.
1951 </para>
1952
1953 </sect3>
1954
1955 <sect3 id="existential-with-context">
1956 <title>Existentials and type classes</title>
1957
1958 <para>
1959 An easy extension is to allow
1960 arbitrary contexts before the constructor.  For example:
1961 </para>
1962
1963 <para>
1964
1965 <programlisting>
1966 data Baz = forall a. Eq a => Baz1 a a
1967          | forall b. Show b => Baz2 b (b -> b)
1968 </programlisting>
1969
1970 </para>
1971
1972 <para>
1973 The two constructors have the types you'd expect:
1974 </para>
1975
1976 <para>
1977
1978 <programlisting>
1979 Baz1 :: forall a. Eq a => a -> a -> Baz
1980 Baz2 :: forall b. Show b => b -> (b -> b) -> Baz
1981 </programlisting>
1982
1983 </para>
1984
1985 <para>
1986 But when pattern matching on <function>Baz1</function> the matched values can be compared
1987 for equality, and when pattern matching on <function>Baz2</function> the first matched
1988 value can be converted to a string (as well as applying the function to it).
1989 So this program is legal:
1990 </para>
1991
1992 <para>
1993
1994 <programlisting>
1995   f :: Baz -> String
1996   f (Baz1 p q) | p == q    = "Yes"
1997                | otherwise = "No"
1998   f (Baz2 v fn)            = show (fn v)
1999 </programlisting>
2000
2001 </para>
2002
2003 <para>
2004 Operationally, in a dictionary-passing implementation, the
2005 constructors <function>Baz1</function> and <function>Baz2</function> must store the
2006 dictionaries for <literal>Eq</literal> and <literal>Show</literal> respectively, and
2007 extract it on pattern matching.
2008 </para>
2009
2010 </sect3>
2011
2012 <sect3 id="existential-records">
2013 <title>Record Constructors</title>
2014
2015 <para>
2016 GHC allows existentials to be used with records syntax as well.  For example:
2017
2018 <programlisting>
2019 data Counter a = forall self. NewCounter
2020     { _this    :: self
2021     , _inc     :: self -> self
2022     , _display :: self -> IO ()
2023     , tag      :: a
2024     }
2025 </programlisting>
2026 Here <literal>tag</literal> is a public field, with a well-typed selector
2027 function <literal>tag :: Counter a -> a</literal>.  The <literal>self</literal>
2028 type is hidden from the outside; any attempt to apply <literal>_this</literal>,
2029 <literal>_inc</literal> or <literal>_display</literal> as functions will raise a
2030 compile-time error.  In other words, <emphasis>GHC defines a record selector function
2031 only for fields whose type does not mention the existentially-quantified variables</emphasis>.
2032 (This example used an underscore in the fields for which record selectors
2033 will not be defined, but that is only programming style; GHC ignores them.)
2034 </para>
2035
2036 <para>
2037 To make use of these hidden fields, we need to create some helper functions:
2038
2039 <programlisting>
2040 inc :: Counter a -> Counter a
2041 inc (NewCounter x i d t) = NewCounter
2042     { _this = i x, _inc = i, _display = d, tag = t } 
2043
2044 display :: Counter a -> IO ()
2045 display NewCounter{ _this = x, _display = d } = d x
2046 </programlisting>
2047
2048 Now we can define counters with different underlying implementations:
2049
2050 <programlisting>
2051 counterA :: Counter String 
2052 counterA = NewCounter
2053     { _this = 0, _inc = (1+), _display = print, tag = "A" }
2054
2055 counterB :: Counter String 
2056 counterB = NewCounter
2057     { _this = "", _inc = ('#':), _display = putStrLn, tag = "B" }
2058
2059 main = do
2060     display (inc counterA)         -- prints "1"
2061     display (inc (inc counterB))   -- prints "##"
2062 </programlisting>
2063
2064 Record update syntax is supported for existentials (and GADTs):
2065 <programlisting>
2066 setTag :: Counter a -> a -> Counter a
2067 setTag obj t = obj{ tag = t }
2068 </programlisting>
2069 The rule for record update is this: <emphasis>
2070 the types of the updated fields may
2071 mention only the universally-quantified type variables
2072 of the data constructor.  For GADTs, the field may mention only types
2073 that appear as a simple type-variable argument in the constructor's result
2074 type</emphasis>.  For example:
2075 <programlisting>
2076 data T a b where { T1 { f1::a, f2::b, f3::(b,c) } :: T a b } -- c is existential
2077 upd1 t x = t { f1=x }   -- OK:   upd1 :: T a b -> a' -> T a' b
2078 upd2 t x = t { f3=x }   -- BAD   (f3's type mentions c, which is
2079                         --        existentially quantified)
2080
2081 data G a b where { G1 { g1::a, g2::c } :: G a [c] }
2082 upd3 g x = g { g1=x }   -- OK:   upd3 :: G a b -> c -> G c b
2083 upd4 g x = g { g2=x }   -- BAD (f2's type mentions c, which is not a simple
2084                         --      type-variable argument in G1's result type)
2085 </programlisting>
2086 </para>
2087
2088 </sect3>
2089
2090
2091 <sect3>
2092 <title>Restrictions</title>
2093
2094 <para>
2095 There are several restrictions on the ways in which existentially-quantified
2096 constructors can be use.
2097 </para>
2098
2099 <para>
2100
2101 <itemizedlist>
2102 <listitem>
2103
2104 <para>
2105  When pattern matching, each pattern match introduces a new,
2106 distinct, type for each existential type variable.  These types cannot
2107 be unified with any other type, nor can they escape from the scope of
2108 the pattern match.  For example, these fragments are incorrect:
2109
2110
2111 <programlisting>
2112 f1 (MkFoo a f) = a
2113 </programlisting>
2114
2115
2116 Here, the type bound by <function>MkFoo</function> "escapes", because <literal>a</literal>
2117 is the result of <function>f1</function>.  One way to see why this is wrong is to
2118 ask what type <function>f1</function> has:
2119
2120
2121 <programlisting>
2122   f1 :: Foo -> a             -- Weird!
2123 </programlisting>
2124
2125
2126 What is this "<literal>a</literal>" in the result type? Clearly we don't mean
2127 this:
2128
2129
2130 <programlisting>
2131   f1 :: forall a. Foo -> a   -- Wrong!
2132 </programlisting>
2133
2134
2135 The original program is just plain wrong.  Here's another sort of error
2136
2137
2138 <programlisting>
2139   f2 (Baz1 a b) (Baz1 p q) = a==q
2140 </programlisting>
2141
2142
2143 It's ok to say <literal>a==b</literal> or <literal>p==q</literal>, but
2144 <literal>a==q</literal> is wrong because it equates the two distinct types arising
2145 from the two <function>Baz1</function> constructors.
2146
2147
2148 </para>
2149 </listitem>
2150 <listitem>
2151
2152 <para>
2153 You can't pattern-match on an existentially quantified
2154 constructor in a <literal>let</literal> or <literal>where</literal> group of
2155 bindings. So this is illegal:
2156
2157
2158 <programlisting>
2159   f3 x = a==b where { Baz1 a b = x }
2160 </programlisting>
2161
2162 Instead, use a <literal>case</literal> expression:
2163
2164 <programlisting>
2165   f3 x = case x of Baz1 a b -> a==b
2166 </programlisting>
2167
2168 In general, you can only pattern-match
2169 on an existentially-quantified constructor in a <literal>case</literal> expression or
2170 in the patterns of a function definition.
2171
2172 The reason for this restriction is really an implementation one.
2173 Type-checking binding groups is already a nightmare without
2174 existentials complicating the picture.  Also an existential pattern
2175 binding at the top level of a module doesn't make sense, because it's
2176 not clear how to prevent the existentially-quantified type "escaping".
2177 So for now, there's a simple-to-state restriction.  We'll see how
2178 annoying it is.
2179
2180 </para>
2181 </listitem>
2182 <listitem>
2183
2184 <para>
2185 You can't use existential quantification for <literal>newtype</literal>
2186 declarations.  So this is illegal:
2187
2188
2189 <programlisting>
2190   newtype T = forall a. Ord a => MkT a
2191 </programlisting>
2192
2193
2194 Reason: a value of type <literal>T</literal> must be represented as a
2195 pair of a dictionary for <literal>Ord t</literal> and a value of type
2196 <literal>t</literal>.  That contradicts the idea that
2197 <literal>newtype</literal> should have no concrete representation.
2198 You can get just the same efficiency and effect by using
2199 <literal>data</literal> instead of <literal>newtype</literal>.  If
2200 there is no overloading involved, then there is more of a case for
2201 allowing an existentially-quantified <literal>newtype</literal>,
2202 because the <literal>data</literal> version does carry an
2203 implementation cost, but single-field existentially quantified
2204 constructors aren't much use.  So the simple restriction (no
2205 existential stuff on <literal>newtype</literal>) stands, unless there
2206 are convincing reasons to change it.
2207
2208
2209 </para>
2210 </listitem>
2211 <listitem>
2212
2213 <para>
2214  You can't use <literal>deriving</literal> to define instances of a
2215 data type with existentially quantified data constructors.
2216
2217 Reason: in most cases it would not make sense. For example:;
2218
2219 <programlisting>
2220 data T = forall a. MkT [a] deriving( Eq )
2221 </programlisting>
2222
2223 To derive <literal>Eq</literal> in the standard way we would need to have equality
2224 between the single component of two <function>MkT</function> constructors:
2225
2226 <programlisting>
2227 instance Eq T where
2228   (MkT a) == (MkT b) = ???
2229 </programlisting>
2230
2231 But <varname>a</varname> and <varname>b</varname> have distinct types, and so can't be compared.
2232 It's just about possible to imagine examples in which the derived instance
2233 would make sense, but it seems altogether simpler simply to prohibit such
2234 declarations.  Define your own instances!
2235 </para>
2236 </listitem>
2237
2238 </itemizedlist>
2239
2240 </para>
2241
2242 </sect3>
2243 </sect2>
2244
2245 <!-- ====================== Generalised algebraic data types =======================  -->
2246
2247 <sect2 id="gadt-style">
2248 <title>Declaring data types with explicit constructor signatures</title>
2249
2250 <para>GHC allows you to declare an algebraic data type by 
2251 giving the type signatures of constructors explicitly.  For example:
2252 <programlisting>
2253   data Maybe a where
2254       Nothing :: Maybe a
2255       Just    :: a -> Maybe a
2256 </programlisting>
2257 The form is called a "GADT-style declaration"
2258 because Generalised Algebraic Data Types, described in <xref linkend="gadt"/>, 
2259 can only be declared using this form.</para>
2260 <para>Notice that GADT-style syntax generalises existential types (<xref linkend="existential-quantification"/>).  
2261 For example, these two declarations are equivalent:
2262 <programlisting>
2263   data Foo = forall a. MkFoo a (a -> Bool)
2264   data Foo' where { MKFoo :: a -> (a->Bool) -> Foo' }
2265 </programlisting>
2266 </para>
2267 <para>Any data type that can be declared in standard Haskell-98 syntax 
2268 can also be declared using GADT-style syntax.
2269 The choice is largely stylistic, but GADT-style declarations differ in one important respect:
2270 they treat class constraints on the data constructors differently.
2271 Specifically, if the constructor is given a type-class context, that
2272 context is made available by pattern matching.  For example:
2273 <programlisting>
2274   data Set a where
2275     MkSet :: Eq a => [a] -> Set a
2276
2277   makeSet :: Eq a => [a] -> Set a
2278   makeSet xs = MkSet (nub xs)
2279
2280   insert :: a -> Set a -> Set a
2281   insert a (MkSet as) | a `elem` as = MkSet as
2282                       | otherwise   = MkSet (a:as)
2283 </programlisting>
2284 A use of <literal>MkSet</literal> as a constructor (e.g. in the definition of <literal>makeSet</literal>) 
2285 gives rise to a <literal>(Eq a)</literal>
2286 constraint, as you would expect.  The new feature is that pattern-matching on <literal>MkSet</literal>
2287 (as in the definition of <literal>insert</literal>) makes <emphasis>available</emphasis> an <literal>(Eq a)</literal>
2288 context.  In implementation terms, the <literal>MkSet</literal> constructor has a hidden field that stores
2289 the <literal>(Eq a)</literal> dictionary that is passed to <literal>MkSet</literal>; so
2290 when pattern-matching that dictionary becomes available for the right-hand side of the match.
2291 In the example, the equality dictionary is used to satisfy the equality constraint 
2292 generated by the call to <literal>elem</literal>, so that the type of
2293 <literal>insert</literal> itself has no <literal>Eq</literal> constraint.
2294 </para>
2295 <para>
2296 For example, one possible application is to reify dictionaries:
2297 <programlisting>
2298    data NumInst a where
2299      MkNumInst :: Num a => NumInst a
2300
2301    intInst :: NumInst Int
2302    intInst = MkNumInst
2303
2304    plus :: NumInst a -> a -> a -> a
2305    plus MkNumInst p q = p + q
2306 </programlisting>
2307 Here, a value of type <literal>NumInst a</literal> is equivalent 
2308 to an explicit <literal>(Num a)</literal> dictionary.
2309 </para>
2310 <para>
2311 All this applies to constructors declared using the syntax of <xref linkend="existential-with-context"/>.
2312 For example, the <literal>NumInst</literal> data type above could equivalently be declared 
2313 like this:
2314 <programlisting>
2315    data NumInst a 
2316       = Num a => MkNumInst (NumInst a)
2317 </programlisting>
2318 Notice that, unlike the situation when declaring an existential, there is 
2319 no <literal>forall</literal>, because the <literal>Num</literal> constrains the
2320 data type's universally quantified type variable <literal>a</literal>.  
2321 A constructor may have both universal and existential type variables: for example,
2322 the following two declarations are equivalent:
2323 <programlisting>
2324    data T1 a 
2325         = forall b. (Num a, Eq b) => MkT1 a b
2326    data T2 a where
2327         MkT2 :: (Num a, Eq b) => a -> b -> T2 a
2328 </programlisting>
2329 </para>
2330 <para>All this behaviour contrasts with Haskell 98's peculiar treatment of 
2331 contexts on a data type declaration (Section 4.2.1 of the Haskell 98 Report).
2332 In Haskell 98 the definition
2333 <programlisting>
2334   data Eq a => Set' a = MkSet' [a]
2335 </programlisting>
2336 gives <literal>MkSet'</literal> the same type as <literal>MkSet</literal> above.  But instead of 
2337 <emphasis>making available</emphasis> an <literal>(Eq a)</literal> constraint, pattern-matching
2338 on <literal>MkSet'</literal> <emphasis>requires</emphasis> an <literal>(Eq a)</literal> constraint!
2339 GHC faithfully implements this behaviour, odd though it is.  But for GADT-style declarations,
2340 GHC's behaviour is much more useful, as well as much more intuitive.
2341 </para>
2342
2343 <para>
2344 The rest of this section gives further details about GADT-style data
2345 type declarations.
2346
2347 <itemizedlist>
2348 <listitem><para>
2349 The result type of each data constructor must begin with the type constructor being defined.
2350 If the result type of all constructors 
2351 has the form <literal>T a1 ... an</literal>, where <literal>a1 ... an</literal>
2352 are distinct type variables, then the data type is <emphasis>ordinary</emphasis>;
2353 otherwise is a <emphasis>generalised</emphasis> data type (<xref linkend="gadt"/>).
2354 </para></listitem>
2355
2356 <listitem><para>
2357 As with other type signatures, you can give a single signature for several data constructors.
2358 In this example we give a single signature for <literal>T1</literal> and <literal>T2</literal>:
2359 <programlisting>
2360   data T a where
2361     T1,T2 :: a -> T a
2362     T3 :: T a
2363 </programlisting>
2364 </para></listitem>
2365
2366 <listitem><para>
2367 The type signature of
2368 each constructor is independent, and is implicitly universally quantified as usual. 
2369 Different constructors may have different universally-quantified type variables
2370 and different type-class constraints.  
2371 For example, this is fine:
2372 <programlisting>
2373   data T a where
2374     T1 :: Eq b => b -> T b
2375     T2 :: (Show c, Ix c) => c -> [c] -> T c
2376 </programlisting>
2377 </para></listitem>
2378
2379 <listitem><para>
2380 Unlike a Haskell-98-style 
2381 data type declaration, the type variable(s) in the "<literal>data Set a where</literal>" header 
2382 have no scope.  Indeed, one can write a kind signature instead:
2383 <programlisting>
2384   data Set :: * -> * where ...
2385 </programlisting>
2386 or even a mixture of the two:
2387 <programlisting>
2388   data Foo a :: (* -> *) -> * where ...
2389 </programlisting>
2390 The type variables (if given) may be explicitly kinded, so we could also write the header for <literal>Foo</literal>
2391 like this:
2392 <programlisting>
2393   data Foo a (b :: * -> *) where ...
2394 </programlisting>
2395 </para></listitem>
2396
2397
2398 <listitem><para>
2399 You can use strictness annotations, in the obvious places
2400 in the constructor type:
2401 <programlisting>
2402   data Term a where
2403       Lit    :: !Int -> Term Int
2404       If     :: Term Bool -> !(Term a) -> !(Term a) -> Term a
2405       Pair   :: Term a -> Term b -> Term (a,b)
2406 </programlisting>
2407 </para></listitem>
2408
2409 <listitem><para>
2410 You can use a <literal>deriving</literal> clause on a GADT-style data type
2411 declaration.   For example, these two declarations are equivalent
2412 <programlisting>
2413   data Maybe1 a where {
2414       Nothing1 :: Maybe1 a ;
2415       Just1    :: a -> Maybe1 a
2416     } deriving( Eq, Ord )
2417
2418   data Maybe2 a = Nothing2 | Just2 a 
2419        deriving( Eq, Ord )
2420 </programlisting>
2421 </para></listitem>
2422
2423 <listitem><para>
2424 You can use record syntax on a GADT-style data type declaration:
2425
2426 <programlisting>
2427   data Person where
2428       Adult { name :: String, children :: [Person] } :: Person
2429       Child { name :: String } :: Person
2430 </programlisting>
2431 As usual, for every constructor that has a field <literal>f</literal>, the type of
2432 field <literal>f</literal> must be the same (modulo alpha conversion).
2433 </para>
2434 <para>
2435 At the moment, record updates are not yet possible with GADT-style declarations, 
2436 so support is limited to record construction, selection and pattern matching.
2437 For example
2438 <programlisting>
2439   aPerson = Adult { name = "Fred", children = [] }
2440
2441   shortName :: Person -> Bool
2442   hasChildren (Adult { children = kids }) = not (null kids)
2443   hasChildren (Child {})                  = False
2444 </programlisting>
2445 </para></listitem>
2446
2447 <listitem><para> 
2448 As in the case of existentials declared using the Haskell-98-like record syntax 
2449 (<xref linkend="existential-records"/>),
2450 record-selector functions are generated only for those fields that have well-typed
2451 selectors.  
2452 Here is the example of that section, in GADT-style syntax:
2453 <programlisting>
2454 data Counter a where
2455     NewCounter { _this    :: self
2456                , _inc     :: self -> self
2457                , _display :: self -> IO ()
2458                , tag      :: a
2459                }
2460         :: Counter a
2461 </programlisting>
2462 As before, only one selector function is generated here, that for <literal>tag</literal>.
2463 Nevertheless, you can still use all the field names in pattern matching and record construction.
2464 </para></listitem>
2465 </itemizedlist></para>
2466 </sect2>
2467
2468 <sect2 id="gadt">
2469 <title>Generalised Algebraic Data Types (GADTs)</title>
2470
2471 <para>Generalised Algebraic Data Types generalise ordinary algebraic data types 
2472 by allowing constructors to have richer return types.  Here is an example:
2473 <programlisting>
2474   data Term a where
2475       Lit    :: Int -> Term Int
2476       Succ   :: Term Int -> Term Int
2477       IsZero :: Term Int -> Term Bool   
2478       If     :: Term Bool -> Term a -> Term a -> Term a
2479       Pair   :: Term a -> Term b -> Term (a,b)
2480 </programlisting>
2481 Notice that the return type of the constructors is not always <literal>Term a</literal>, as is the
2482 case with ordinary data types.  This generality allows us to 
2483 write a well-typed <literal>eval</literal> function
2484 for these <literal>Terms</literal>:
2485 <programlisting>
2486   eval :: Term a -> a
2487   eval (Lit i)      = i
2488   eval (Succ t)     = 1 + eval t
2489   eval (IsZero t)   = eval t == 0
2490   eval (If b e1 e2) = if eval b then eval e1 else eval e2
2491   eval (Pair e1 e2) = (eval e1, eval e2)
2492 </programlisting>
2493 The key point about GADTs is that <emphasis>pattern matching causes type refinement</emphasis>.  
2494 For example, in the right hand side of the equation
2495 <programlisting>
2496   eval :: Term a -> a
2497   eval (Lit i) =  ...
2498 </programlisting>
2499 the type <literal>a</literal> is refined to <literal>Int</literal>.  That's the whole point!
2500 A precise specification of the type rules is beyond what this user manual aspires to, 
2501 but the design closely follows that described in
2502 the paper <ulink
2503 url="http://research.microsoft.com/%7Esimonpj/papers/gadt/">Simple
2504 unification-based type inference for GADTs</ulink>,
2505 (ICFP 2006).
2506 The general principle is this: <emphasis>type refinement is only carried out 
2507 based on user-supplied type annotations</emphasis>.
2508 So if no type signature is supplied for <literal>eval</literal>, no type refinement happens, 
2509 and lots of obscure error messages will
2510 occur.  However, the refinement is quite general.  For example, if we had:
2511 <programlisting>
2512   eval :: Term a -> a -> a
2513   eval (Lit i) j =  i+j
2514 </programlisting>
2515 the pattern match causes the type <literal>a</literal> to be refined to <literal>Int</literal> (because of the type
2516 of the constructor <literal>Lit</literal>), and that refinement also applies to the type of <literal>j</literal>, and
2517 the result type of the <literal>case</literal> expression.  Hence the addition <literal>i+j</literal> is legal.
2518 </para>
2519 <para>
2520 These and many other examples are given in papers by Hongwei Xi, and
2521 Tim Sheard. There is a longer introduction
2522 <ulink url="http://www.haskell.org/haskellwiki/GADT">on the wiki</ulink>,
2523 and Ralf Hinze's
2524 <ulink url="http://www.informatik.uni-bonn.de/~ralf/publications/With.pdf">Fun with phantom types</ulink> also has a number of examples. Note that papers
2525 may use different notation to that implemented in GHC.
2526 </para>
2527 <para>
2528 The rest of this section outlines the extensions to GHC that support GADTs.   The extension is enabled with 
2529 <option>-XGADTs</option>.  The <option>-XGADTs</option> flag also sets <option>-XRelaxedPolyRec</option>.
2530 <itemizedlist>
2531 <listitem><para>
2532 A GADT can only be declared using GADT-style syntax (<xref linkend="gadt-style"/>); 
2533 the old Haskell-98 syntax for data declarations always declares an ordinary data type.
2534 The result type of each constructor must begin with the type constructor being defined,
2535 but for a GADT the arguments to the type constructor can be arbitrary monotypes.  
2536 For example, in the <literal>Term</literal> data
2537 type above, the type of each constructor must end with <literal>Term ty</literal>, but
2538 the <literal>ty</literal> need not be a type variable (e.g. the <literal>Lit</literal>
2539 constructor).
2540 </para></listitem>
2541
2542 <listitem><para>
2543 It's is permitted to declare an ordinary algebraic data type using GADT-style syntax.
2544 What makes a GADT into a GADT is not the syntax, but rather the presence of data constructors
2545 whose result type is not just <literal>T a b</literal>.
2546 </para></listitem>
2547
2548 <listitem><para>
2549 You cannot use a <literal>deriving</literal> clause for a GADT; only for
2550 an ordinary data type.
2551 </para></listitem>
2552
2553 <listitem><para>
2554 As mentioned in <xref linkend="gadt-style"/>, record syntax is supported.
2555 For example:
2556 <programlisting>
2557   data Term a where
2558       Lit    { val  :: Int }      :: Term Int
2559       Succ   { num  :: Term Int } :: Term Int
2560       Pred   { num  :: Term Int } :: Term Int
2561       IsZero { arg  :: Term Int } :: Term Bool  
2562       Pair   { arg1 :: Term a
2563              , arg2 :: Term b
2564              }                    :: Term (a,b)
2565       If     { cnd  :: Term Bool
2566              , tru  :: Term a
2567              , fls  :: Term a
2568              }                    :: Term a
2569 </programlisting>
2570 However, for GADTs there is the following additional constraint: 
2571 every constructor that has a field <literal>f</literal> must have
2572 the same result type (modulo alpha conversion)
2573 Hence, in the above example, we cannot merge the <literal>num</literal> 
2574 and <literal>arg</literal> fields above into a 
2575 single name.  Although their field types are both <literal>Term Int</literal>,
2576 their selector functions actually have different types:
2577
2578 <programlisting>
2579   num :: Term Int -> Term Int
2580   arg :: Term Bool -> Term Int
2581 </programlisting>
2582 </para></listitem>
2583
2584 <listitem><para>
2585 When pattern-matching against data constructors drawn from a GADT, 
2586 for example in a <literal>case</literal> expression, the following rules apply:
2587 <itemizedlist>
2588 <listitem><para>The type of the scrutinee must be rigid.</para></listitem>
2589 <listitem><para>The type of the entire <literal>case</literal> expression must be rigid.</para></listitem>
2590 <listitem><para>The type of any free variable mentioned in any of
2591 the <literal>case</literal> alternatives must be rigid.</para></listitem>
2592 </itemizedlist>
2593 A type is "rigid" if it is completely known to the compiler at its binding site.  The easiest
2594 way to ensure that a variable a rigid type is to give it a type signature.
2595 For more precise details see <ulink url="http://research.microsoft.com/%7Esimonpj/papers/gadt">
2596 Simple unification-based type inference for GADTs
2597 </ulink>. The criteria implemented by GHC are given in the Appendix.
2598
2599 </para></listitem>
2600
2601 </itemizedlist>
2602 </para>
2603
2604 </sect2>
2605 </sect1>
2606
2607 <!-- ====================== End of Generalised algebraic data types =======================  -->
2608
2609 <sect1 id="deriving">
2610 <title>Extensions to the "deriving" mechanism</title>
2611
2612 <sect2 id="deriving-inferred">
2613 <title>Inferred context for deriving clauses</title>
2614
2615 <para>
2616 The Haskell Report is vague about exactly when a <literal>deriving</literal> clause is
2617 legal.  For example:
2618 <programlisting>
2619   data T0 f a = MkT0 a         deriving( Eq )
2620   data T1 f a = MkT1 (f a)     deriving( Eq )
2621   data T2 f a = MkT2 (f (f a)) deriving( Eq )
2622 </programlisting>
2623 The natural generated <literal>Eq</literal> code would result in these instance declarations:
2624 <programlisting>
2625   instance Eq a         => Eq (T0 f a) where ...
2626   instance Eq (f a)     => Eq (T1 f a) where ...
2627   instance Eq (f (f a)) => Eq (T2 f a) where ...
2628 </programlisting>
2629 The first of these is obviously fine. The second is still fine, although less obviously. 
2630 The third is not Haskell 98, and risks losing termination of instances.
2631 </para>
2632 <para>
2633 GHC takes a conservative position: it accepts the first two, but not the third.  The  rule is this:
2634 each constraint in the inferred instance context must consist only of type variables, 
2635 with no repetitions.
2636 </para>
2637 <para>
2638 This rule is applied regardless of flags.  If you want a more exotic context, you can write
2639 it yourself, using the <link linkend="stand-alone-deriving">standalone deriving mechanism</link>.
2640 </para>
2641 </sect2>
2642
2643 <sect2 id="stand-alone-deriving">
2644 <title>Stand-alone deriving declarations</title>
2645
2646 <para>
2647 GHC now allows stand-alone <literal>deriving</literal> declarations, enabled by <literal>-XStandaloneDeriving</literal>:
2648 <programlisting>
2649   data Foo a = Bar a | Baz String
2650
2651   deriving instance Eq a => Eq (Foo a)
2652 </programlisting>
2653 The syntax is identical to that of an ordinary instance declaration apart from (a) the keyword
2654 <literal>deriving</literal>, and (b) the absence of the <literal>where</literal> part.
2655 You must supply a context (in the example the context is <literal>(Eq a)</literal>), 
2656 exactly as you would in an ordinary instance declaration.
2657 (In contrast the context is inferred in a <literal>deriving</literal> clause 
2658 attached to a data type declaration.) 
2659
2660 A <literal>deriving instance</literal> declaration
2661 must obey the same rules concerning form and termination as ordinary instance declarations,
2662 controlled by the same flags; see <xref linkend="instance-decls"/>.
2663 </para>
2664 <para>
2665 Unlike a <literal>deriving</literal>
2666 declaration attached to a <literal>data</literal> declaration, the instance can be more specific
2667 than the data type (assuming you also use 
2668 <literal>-XFlexibleInstances</literal>, <xref linkend="instance-rules"/>).  Consider
2669 for example
2670 <programlisting>
2671   data Foo a = Bar a | Baz String
2672
2673   deriving instance Eq a => Eq (Foo [a])
2674   deriving instance Eq a => Eq (Foo (Maybe a))
2675 </programlisting>
2676 This will generate a derived instance for <literal>(Foo [a])</literal> and <literal>(Foo (Maybe a))</literal>,
2677 but other types such as <literal>(Foo (Int,Bool))</literal> will not be an instance of <literal>Eq</literal>.
2678 </para>
2679
2680 <para>The stand-alone syntax is generalised for newtypes in exactly the same
2681 way that ordinary <literal>deriving</literal> clauses are generalised (<xref linkend="newtype-deriving"/>).
2682 For example:
2683 <programlisting>
2684   newtype Foo a = MkFoo (State Int a)
2685
2686   deriving instance MonadState Int Foo
2687 </programlisting>
2688 GHC always treats the <emphasis>last</emphasis> parameter of the instance
2689 (<literal>Foo</literal> in this example) as the type whose instance is being derived.
2690 </para>
2691
2692 </sect2>
2693
2694
2695 <sect2 id="deriving-typeable">
2696 <title>Deriving clause for extra classes (<literal>Typeable</literal>, <literal>Data</literal>, etc)</title>
2697
2698 <para>
2699 Haskell 98 allows the programmer to add "<literal>deriving( Eq, Ord )</literal>" to a data type 
2700 declaration, to generate a standard instance declaration for classes specified in the <literal>deriving</literal> clause.  
2701 In Haskell 98, the only classes that may appear in the <literal>deriving</literal> clause are the standard
2702 classes <literal>Eq</literal>, <literal>Ord</literal>, 
2703 <literal>Enum</literal>, <literal>Ix</literal>, <literal>Bounded</literal>, <literal>Read</literal>, and <literal>Show</literal>.
2704 </para>
2705 <para>
2706 GHC extends this list with several more classes that may be automatically derived:
2707 <itemizedlist>
2708 <listitem><para> With <option>-XDeriveDataTypeable</option>, you can derive instances of the classes
2709 <literal>Typeable</literal>, and <literal>Data</literal>, defined in the library
2710 modules <literal>Data.Typeable</literal> and <literal>Data.Generics</literal> respectively.
2711 </para>
2712 <para>An instance of <literal>Typeable</literal> can only be derived if the
2713 data type has seven or fewer type parameters, all of kind <literal>*</literal>.
2714 The reason for this is that the <literal>Typeable</literal> class is derived using the scheme
2715 described in
2716 <ulink url="http://research.microsoft.com/%7Esimonpj/papers/hmap/gmap2.ps">
2717 Scrap More Boilerplate: Reflection, Zips, and Generalised Casts
2718 </ulink>.
2719 (Section 7.4 of the paper describes the multiple <literal>Typeable</literal> classes that
2720 are used, and only <literal>Typeable1</literal> up to
2721 <literal>Typeable7</literal> are provided in the library.)
2722 In other cases, there is nothing to stop the programmer writing a <literal>TypableX</literal>
2723 class, whose kind suits that of the data type constructor, and
2724 then writing the data type instance by hand.
2725 </para>
2726 </listitem>
2727
2728 <listitem><para> With <option>-XDeriveFunctor</option>, you can derive instances of 
2729 the class <literal>Functor</literal>,
2730 defined in <literal>GHC.Base</literal>.
2731 </para></listitem>
2732
2733 <listitem><para> With <option>-XDeriveFoldable</option>, you can derive instances of 
2734 the class <literal>Foldable</literal>,
2735 defined in <literal>Data.Foldable</literal>.
2736 </para></listitem>
2737
2738 <listitem><para> With <option>-XDeriveTraversable</option>, you can derive instances of 
2739 the class <literal>Traversable</literal>,
2740 defined in <literal>Data.Traversable</literal>.
2741 </para></listitem>
2742 </itemizedlist>
2743 In each case the appropriate class must be in scope before it 
2744 can be mentioned in the <literal>deriving</literal> clause.
2745 </para>
2746 </sect2>
2747
2748 <sect2 id="newtype-deriving">
2749 <title>Generalised derived instances for newtypes</title>
2750
2751 <para>
2752 When you define an abstract type using <literal>newtype</literal>, you may want
2753 the new type to inherit some instances from its representation. In
2754 Haskell 98, you can inherit instances of <literal>Eq</literal>, <literal>Ord</literal>,
2755 <literal>Enum</literal> and <literal>Bounded</literal> by deriving them, but for any
2756 other classes you have to write an explicit instance declaration. For
2757 example, if you define
2758
2759 <programlisting>
2760   newtype Dollars = Dollars Int 
2761 </programlisting>
2762
2763 and you want to use arithmetic on <literal>Dollars</literal>, you have to
2764 explicitly define an instance of <literal>Num</literal>:
2765
2766 <programlisting>
2767   instance Num Dollars where
2768     Dollars a + Dollars b = Dollars (a+b)
2769     ...
2770 </programlisting>
2771 All the instance does is apply and remove the <literal>newtype</literal>
2772 constructor. It is particularly galling that, since the constructor
2773 doesn't appear at run-time, this instance declaration defines a
2774 dictionary which is <emphasis>wholly equivalent</emphasis> to the <literal>Int</literal>
2775 dictionary, only slower!
2776 </para>
2777
2778
2779 <sect3> <title> Generalising the deriving clause </title>
2780 <para>
2781 GHC now permits such instances to be derived instead, 
2782 using the flag <option>-XGeneralizedNewtypeDeriving</option>,
2783 so one can write 
2784 <programlisting>
2785   newtype Dollars = Dollars Int deriving (Eq,Show,Num)
2786 </programlisting>
2787
2788 and the implementation uses the <emphasis>same</emphasis> <literal>Num</literal> dictionary
2789 for <literal>Dollars</literal> as for <literal>Int</literal>. Notionally, the compiler
2790 derives an instance declaration of the form
2791
2792 <programlisting>
2793   instance Num Int => Num Dollars
2794 </programlisting>
2795
2796 which just adds or removes the <literal>newtype</literal> constructor according to the type.
2797 </para>
2798 <para>
2799
2800 We can also derive instances of constructor classes in a similar
2801 way. For example, suppose we have implemented state and failure monad
2802 transformers, such that
2803
2804 <programlisting>
2805   instance Monad m => Monad (State s m) 
2806   instance Monad m => Monad (Failure m)
2807 </programlisting>
2808 In Haskell 98, we can define a parsing monad by 
2809 <programlisting>
2810   type Parser tok m a = State [tok] (Failure m) a
2811 </programlisting>
2812
2813 which is automatically a monad thanks to the instance declarations
2814 above. With the extension, we can make the parser type abstract,
2815 without needing to write an instance of class <literal>Monad</literal>, via
2816
2817 <programlisting>
2818   newtype Parser tok m a = Parser (State [tok] (Failure m) a)
2819                          deriving Monad
2820 </programlisting>
2821 In this case the derived instance declaration is of the form 
2822 <programlisting>
2823   instance Monad (State [tok] (Failure m)) => Monad (Parser tok m) 
2824 </programlisting>
2825
2826 Notice that, since <literal>Monad</literal> is a constructor class, the
2827 instance is a <emphasis>partial application</emphasis> of the new type, not the
2828 entire left hand side. We can imagine that the type declaration is
2829 "eta-converted" to generate the context of the instance
2830 declaration.
2831 </para>
2832 <para>
2833
2834 We can even derive instances of multi-parameter classes, provided the
2835 newtype is the last class parameter. In this case, a ``partial
2836 application'' of the class appears in the <literal>deriving</literal>
2837 clause. For example, given the class
2838
2839 <programlisting>
2840   class StateMonad s m | m -> s where ... 
2841   instance Monad m => StateMonad s (State s m) where ... 
2842 </programlisting>
2843 then we can derive an instance of <literal>StateMonad</literal> for <literal>Parser</literal>s by 
2844 <programlisting>
2845   newtype Parser tok m a = Parser (State [tok] (Failure m) a)
2846                          deriving (Monad, StateMonad [tok])
2847 </programlisting>
2848
2849 The derived instance is obtained by completing the application of the
2850 class to the new type:
2851
2852 <programlisting>
2853   instance StateMonad [tok] (State [tok] (Failure m)) =>
2854            StateMonad [tok] (Parser tok m)
2855 </programlisting>
2856 </para>
2857 <para>
2858
2859 As a result of this extension, all derived instances in newtype
2860  declarations are treated uniformly (and implemented just by reusing
2861 the dictionary for the representation type), <emphasis>except</emphasis>
2862 <literal>Show</literal> and <literal>Read</literal>, which really behave differently for
2863 the newtype and its representation.
2864 </para>
2865 </sect3>
2866
2867 <sect3> <title> A more precise specification </title>
2868 <para>
2869 Derived instance declarations are constructed as follows. Consider the
2870 declaration (after expansion of any type synonyms)
2871
2872 <programlisting>
2873   newtype T v1...vn = T' (t vk+1...vn) deriving (c1...cm) 
2874 </programlisting>
2875
2876 where 
2877  <itemizedlist>
2878 <listitem><para>
2879   The <literal>ci</literal> are partial applications of
2880   classes of the form <literal>C t1'...tj'</literal>, where the arity of <literal>C</literal>
2881   is exactly <literal>j+1</literal>.  That is, <literal>C</literal> lacks exactly one type argument.
2882 </para></listitem>
2883 <listitem><para>
2884   The <literal>k</literal> is chosen so that <literal>ci (T v1...vk)</literal> is well-kinded.
2885 </para></listitem>
2886 <listitem><para>
2887   The type <literal>t</literal> is an arbitrary type.
2888 </para></listitem>
2889 <listitem><para>
2890   The type variables <literal>vk+1...vn</literal> do not occur in <literal>t</literal>, 
2891   nor in the <literal>ci</literal>, and
2892 </para></listitem>
2893 <listitem><para>
2894   None of the <literal>ci</literal> is <literal>Read</literal>, <literal>Show</literal>, 
2895                 <literal>Typeable</literal>, or <literal>Data</literal>.  These classes
2896                 should not "look through" the type or its constructor.  You can still
2897                 derive these classes for a newtype, but it happens in the usual way, not 
2898                 via this new mechanism.  
2899 </para></listitem>
2900 </itemizedlist>
2901 Then, for each <literal>ci</literal>, the derived instance
2902 declaration is:
2903 <programlisting>
2904   instance ci t => ci (T v1...vk)
2905 </programlisting>
2906 As an example which does <emphasis>not</emphasis> work, consider 
2907 <programlisting>
2908   newtype NonMonad m s = NonMonad (State s m s) deriving Monad 
2909 </programlisting>
2910 Here we cannot derive the instance 
2911 <programlisting>
2912   instance Monad (State s m) => Monad (NonMonad m) 
2913 </programlisting>
2914
2915 because the type variable <literal>s</literal> occurs in <literal>State s m</literal>,
2916 and so cannot be "eta-converted" away. It is a good thing that this
2917 <literal>deriving</literal> clause is rejected, because <literal>NonMonad m</literal> is
2918 not, in fact, a monad --- for the same reason. Try defining
2919 <literal>>>=</literal> with the correct type: you won't be able to.
2920 </para>
2921 <para>
2922
2923 Notice also that the <emphasis>order</emphasis> of class parameters becomes
2924 important, since we can only derive instances for the last one. If the
2925 <literal>StateMonad</literal> class above were instead defined as
2926
2927 <programlisting>
2928   class StateMonad m s | m -> s where ... 
2929 </programlisting>
2930
2931 then we would not have been able to derive an instance for the
2932 <literal>Parser</literal> type above. We hypothesise that multi-parameter
2933 classes usually have one "main" parameter for which deriving new
2934 instances is most interesting.
2935 </para>
2936 <para>Lastly, all of this applies only for classes other than
2937 <literal>Read</literal>, <literal>Show</literal>, <literal>Typeable</literal>, 
2938 and <literal>Data</literal>, for which the built-in derivation applies (section
2939 4.3.3. of the Haskell Report).
2940 (For the standard classes <literal>Eq</literal>, <literal>Ord</literal>,
2941 <literal>Ix</literal>, and <literal>Bounded</literal> it is immaterial whether
2942 the standard method is used or the one described here.)
2943 </para>
2944 </sect3>
2945 </sect2>
2946 </sect1>
2947
2948
2949 <!-- TYPE SYSTEM EXTENSIONS -->
2950 <sect1 id="type-class-extensions">
2951 <title>Class and instances declarations</title>
2952
2953 <sect2 id="multi-param-type-classes">
2954 <title>Class declarations</title>
2955
2956 <para>
2957 This section, and the next one, documents GHC's type-class extensions.
2958 There's lots of background in the paper <ulink
2959 url="http://research.microsoft.com/~simonpj/Papers/type-class-design-space/">Type
2960 classes: exploring the design space</ulink> (Simon Peyton Jones, Mark
2961 Jones, Erik Meijer).
2962 </para>
2963 <para>
2964 All the extensions are enabled by the <option>-fglasgow-exts</option> flag.
2965 </para>
2966
2967 <sect3>
2968 <title>Multi-parameter type classes</title>
2969 <para>
2970 Multi-parameter type classes are permitted. For example:
2971
2972
2973 <programlisting>
2974   class Collection c a where
2975     union :: c a -> c a -> c a
2976     ...etc.
2977 </programlisting>
2978
2979 </para>
2980 </sect3>
2981
2982 <sect3>
2983 <title>The superclasses of a class declaration</title>
2984
2985 <para>
2986 There are no restrictions on the context in a class declaration
2987 (which introduces superclasses), except that the class hierarchy must
2988 be acyclic.  So these class declarations are OK:
2989
2990
2991 <programlisting>
2992   class Functor (m k) => FiniteMap m k where
2993     ...
2994
2995   class (Monad m, Monad (t m)) => Transform t m where
2996     lift :: m a -> (t m) a
2997 </programlisting>
2998
2999
3000 </para>
3001 <para>
3002 As in Haskell 98, The class hierarchy must be acyclic.  However, the definition
3003 of "acyclic" involves only the superclass relationships.  For example,
3004 this is OK:
3005
3006
3007 <programlisting>
3008   class C a where {
3009     op :: D b => a -> b -> b
3010   }
3011
3012   class C a => D a where { ... }
3013 </programlisting>
3014
3015
3016 Here, <literal>C</literal> is a superclass of <literal>D</literal>, but it's OK for a
3017 class operation <literal>op</literal> of <literal>C</literal> to mention <literal>D</literal>.  (It
3018 would not be OK for <literal>D</literal> to be a superclass of <literal>C</literal>.)
3019 </para>
3020 </sect3>
3021
3022
3023
3024
3025 <sect3 id="class-method-types">
3026 <title>Class method types</title>
3027
3028 <para>
3029 Haskell 98 prohibits class method types to mention constraints on the
3030 class type variable, thus:
3031 <programlisting>
3032   class Seq s a where
3033     fromList :: [a] -> s a
3034     elem     :: Eq a => a -> s a -> Bool
3035 </programlisting>
3036 The type of <literal>elem</literal> is illegal in Haskell 98, because it
3037 contains the constraint <literal>Eq a</literal>, constrains only the 
3038 class type variable (in this case <literal>a</literal>).
3039 GHC lifts this restriction (flag <option>-XConstrainedClassMethods</option>).
3040 </para>
3041
3042
3043 </sect3>
3044 </sect2>
3045
3046 <sect2 id="functional-dependencies">
3047 <title>Functional dependencies
3048 </title>
3049
3050 <para> Functional dependencies are implemented as described by Mark Jones
3051 in &ldquo;<ulink url="http://citeseer.ist.psu.edu/jones00type.html">Type Classes with Functional Dependencies</ulink>&rdquo;, Mark P. Jones, 
3052 In Proceedings of the 9th European Symposium on Programming, 
3053 ESOP 2000, Berlin, Germany, March 2000, Springer-Verlag LNCS 1782,
3054 .
3055 </para>
3056 <para>
3057 Functional dependencies are introduced by a vertical bar in the syntax of a 
3058 class declaration;  e.g. 
3059 <programlisting>
3060   class (Monad m) => MonadState s m | m -> s where ...
3061
3062   class Foo a b c | a b -> c where ...
3063 </programlisting>
3064 There should be more documentation, but there isn't (yet).  Yell if you need it.
3065 </para>
3066
3067 <sect3><title>Rules for functional dependencies </title>
3068 <para>
3069 In a class declaration, all of the class type variables must be reachable (in the sense 
3070 mentioned in <xref linkend="type-restrictions"/>)
3071 from the free variables of each method type.
3072 For example:
3073
3074 <programlisting>
3075   class Coll s a where
3076     empty  :: s
3077     insert :: s -> a -> s
3078 </programlisting>
3079
3080 is not OK, because the type of <literal>empty</literal> doesn't mention
3081 <literal>a</literal>.  Functional dependencies can make the type variable
3082 reachable:
3083 <programlisting>
3084   class Coll s a | s -> a where
3085     empty  :: s
3086     insert :: s -> a -> s
3087 </programlisting>
3088
3089 Alternatively <literal>Coll</literal> might be rewritten
3090
3091 <programlisting>
3092   class Coll s a where
3093     empty  :: s a
3094     insert :: s a -> a -> s a
3095 </programlisting>
3096
3097
3098 which makes the connection between the type of a collection of
3099 <literal>a</literal>'s (namely <literal>(s a)</literal>) and the element type <literal>a</literal>.
3100 Occasionally this really doesn't work, in which case you can split the
3101 class like this:
3102
3103
3104 <programlisting>
3105   class CollE s where
3106     empty  :: s
3107
3108   class CollE s => Coll s a where
3109     insert :: s -> a -> s
3110 </programlisting>
3111 </para>
3112 </sect3>
3113
3114
3115 <sect3>
3116 <title>Background on functional dependencies</title>
3117
3118 <para>The following description of the motivation and use of functional dependencies is taken
3119 from the Hugs user manual, reproduced here (with minor changes) by kind
3120 permission of Mark Jones.
3121 </para>
3122 <para> 
3123 Consider the following class, intended as part of a
3124 library for collection types:
3125 <programlisting>
3126    class Collects e ce where
3127        empty  :: ce
3128        insert :: e -> ce -> ce
3129        member :: e -> ce -> Bool
3130 </programlisting>
3131 The type variable e used here represents the element type, while ce is the type
3132 of the container itself. Within this framework, we might want to define
3133 instances of this class for lists or characteristic functions (both of which
3134 can be used to represent collections of any equality type), bit sets (which can
3135 be used to represent collections of characters), or hash tables (which can be
3136 used to represent any collection whose elements have a hash function). Omitting
3137 standard implementation details, this would lead to the following declarations: 
3138 <programlisting>
3139    instance Eq e => Collects e [e] where ...
3140    instance Eq e => Collects e (e -> Bool) where ...
3141    instance Collects Char BitSet where ...
3142    instance (Hashable e, Collects a ce)
3143               => Collects e (Array Int ce) where ...
3144 </programlisting>
3145 All this looks quite promising; we have a class and a range of interesting
3146 implementations. Unfortunately, there are some serious problems with the class
3147 declaration. First, the empty function has an ambiguous type: 
3148 <programlisting>
3149    empty :: Collects e ce => ce
3150 </programlisting>
3151 By "ambiguous" we mean that there is a type variable e that appears on the left
3152 of the <literal>=&gt;</literal> symbol, but not on the right. The problem with
3153 this is that, according to the theoretical foundations of Haskell overloading,
3154 we cannot guarantee a well-defined semantics for any term with an ambiguous
3155 type.
3156 </para>
3157 <para>
3158 We can sidestep this specific problem by removing the empty member from the
3159 class declaration. However, although the remaining members, insert and member,
3160 do not have ambiguous types, we still run into problems when we try to use
3161 them. For example, consider the following two functions: 
3162 <programlisting>
3163    f x y = insert x . insert y
3164    g     = f True 'a'
3165 </programlisting>
3166 for which GHC infers the following types: 
3167 <programlisting>
3168    f :: (Collects a c, Collects b c) => a -> b -> c -> c
3169    g :: (Collects Bool c, Collects Char c) => c -> c
3170 </programlisting>
3171 Notice that the type for f allows the two parameters x and y to be assigned
3172 different types, even though it attempts to insert each of the two values, one
3173 after the other, into the same collection. If we're trying to model collections
3174 that contain only one type of value, then this is clearly an inaccurate
3175 type. Worse still, the definition for g is accepted, without causing a type
3176 error. As a result, the error in this code will not be flagged at the point
3177 where it appears. Instead, it will show up only when we try to use g, which
3178 might even be in a different module.
3179 </para>
3180
3181 <sect4><title>An attempt to use constructor classes</title>
3182
3183 <para>
3184 Faced with the problems described above, some Haskell programmers might be
3185 tempted to use something like the following version of the class declaration: 
3186 <programlisting>
3187    class Collects e c where
3188       empty  :: c e
3189       insert :: e -> c e -> c e
3190       member :: e -> c e -> Bool
3191 </programlisting>
3192 The key difference here is that we abstract over the type constructor c that is
3193 used to form the collection type c e, and not over that collection type itself,
3194 represented by ce in the original class declaration. This avoids the immediate
3195 problems that we mentioned above: empty has type <literal>Collects e c => c
3196 e</literal>, which is not ambiguous. 
3197 </para>
3198 <para>
3199 The function f from the previous section has a more accurate type: 
3200 <programlisting>
3201    f :: (Collects e c) => e -> e -> c e -> c e
3202 </programlisting>
3203 The function g from the previous section is now rejected with a type error as
3204 we would hope because the type of f does not allow the two arguments to have
3205 different types. 
3206 This, then, is an example of a multiple parameter class that does actually work
3207 quite well in practice, without ambiguity problems.
3208 There is, however, a catch. This version of the Collects class is nowhere near
3209 as general as the original class seemed to be: only one of the four instances
3210 for <literal>Collects</literal>
3211 given above can be used with this version of Collects because only one of
3212 them---the instance for lists---has a collection type that can be written in
3213 the form c e, for some type constructor c, and element type e.
3214 </para>
3215 </sect4>
3216
3217 <sect4><title>Adding functional dependencies</title>
3218
3219 <para>
3220 To get a more useful version of the Collects class, Hugs provides a mechanism
3221 that allows programmers to specify dependencies between the parameters of a
3222 multiple parameter class (For readers with an interest in theoretical
3223 foundations and previous work: The use of dependency information can be seen
3224 both as a generalization of the proposal for `parametric type classes' that was
3225 put forward by Chen, Hudak, and Odersky, or as a special case of Mark Jones's
3226 later framework for "improvement" of qualified types. The
3227 underlying ideas are also discussed in a more theoretical and abstract setting
3228 in a manuscript [implparam], where they are identified as one point in a
3229 general design space for systems of implicit parameterization.).
3230
3231 To start with an abstract example, consider a declaration such as: 
3232 <programlisting>
3233    class C a b where ...
3234 </programlisting>
3235 which tells us simply that C can be thought of as a binary relation on types
3236 (or type constructors, depending on the kinds of a and b). Extra clauses can be
3237 included in the definition of classes to add information about dependencies
3238 between parameters, as in the following examples: 
3239 <programlisting>
3240    class D a b | a -> b where ...
3241    class E a b | a -> b, b -> a where ...
3242 </programlisting>
3243 The notation <literal>a -&gt; b</literal> used here between the | and where
3244 symbols --- not to be
3245 confused with a function type --- indicates that the a parameter uniquely
3246 determines the b parameter, and might be read as "a determines b." Thus D is
3247 not just a relation, but actually a (partial) function. Similarly, from the two
3248 dependencies that are included in the definition of E, we can see that E
3249 represents a (partial) one-one mapping between types.
3250 </para>
3251 <para>
3252 More generally, dependencies take the form <literal>x1 ... xn -&gt; y1 ... ym</literal>,
3253 where x1, ..., xn, and y1, ..., yn are type variables with n&gt;0 and
3254 m&gt;=0, meaning that the y parameters are uniquely determined by the x
3255 parameters. Spaces can be used as separators if more than one variable appears
3256 on any single side of a dependency, as in <literal>t -&gt; a b</literal>. Note that a class may be
3257 annotated with multiple dependencies using commas as separators, as in the
3258 definition of E above. Some dependencies that we can write in this notation are
3259 redundant, and will be rejected because they don't serve any useful
3260 purpose, and may instead indicate an error in the program. Examples of
3261 dependencies like this include  <literal>a -&gt; a </literal>,  
3262 <literal>a -&gt; a a </literal>,  
3263 <literal>a -&gt; </literal>, etc. There can also be
3264 some redundancy if multiple dependencies are given, as in  
3265 <literal>a-&gt;b</literal>, 
3266  <literal>b-&gt;c </literal>,  <literal>a-&gt;c </literal>, and
3267 in which some subset implies the remaining dependencies. Examples like this are
3268 not treated as errors. Note that dependencies appear only in class
3269 declarations, and not in any other part of the language. In particular, the
3270 syntax for instance declarations, class constraints, and types is completely
3271 unchanged.
3272 </para>
3273 <para>
3274 By including dependencies in a class declaration, we provide a mechanism for
3275 the programmer to specify each multiple parameter class more precisely. The
3276 compiler, on the other hand, is responsible for ensuring that the set of
3277 instances that are in scope at any given point in the program is consistent
3278 with any declared dependencies. For example, the following pair of instance
3279 declarations cannot appear together in the same scope because they violate the
3280 dependency for D, even though either one on its own would be acceptable: 
3281 <programlisting>
3282    instance D Bool Int where ...
3283    instance D Bool Char where ...
3284 </programlisting>
3285 Note also that the following declaration is not allowed, even by itself: 
3286 <programlisting>
3287    instance D [a] b where ...
3288 </programlisting>
3289 The problem here is that this instance would allow one particular choice of [a]
3290 to be associated with more than one choice for b, which contradicts the
3291 dependency specified in the definition of D. More generally, this means that,
3292 in any instance of the form: 
3293 <programlisting>
3294    instance D t s where ...
3295 </programlisting>
3296 for some particular types t and s, the only variables that can appear in s are
3297 the ones that appear in t, and hence, if the type t is known, then s will be
3298 uniquely determined.
3299 </para>
3300 <para>
3301 The benefit of including dependency information is that it allows us to define
3302 more general multiple parameter classes, without ambiguity problems, and with
3303 the benefit of more accurate types. To illustrate this, we return to the
3304 collection class example, and annotate the original definition of <literal>Collects</literal>
3305 with a simple dependency: 
3306 <programlisting>
3307    class Collects e ce | ce -> e where
3308       empty  :: ce
3309       insert :: e -> ce -> ce
3310       member :: e -> ce -> Bool
3311 </programlisting>
3312 The dependency <literal>ce -&gt; e</literal> here specifies that the type e of elements is uniquely
3313 determined by the type of the collection ce. Note that both parameters of
3314 Collects are of kind *; there are no constructor classes here. Note too that
3315 all of the instances of Collects that we gave earlier can be used
3316 together with this new definition.
3317 </para>
3318 <para>
3319 What about the ambiguity problems that we encountered with the original
3320 definition? The empty function still has type Collects e ce => ce, but it is no
3321 longer necessary to regard that as an ambiguous type: Although the variable e
3322 does not appear on the right of the => symbol, the dependency for class
3323 Collects tells us that it is uniquely determined by ce, which does appear on
3324 the right of the => symbol. Hence the context in which empty is used can still
3325 give enough information to determine types for both ce and e, without
3326 ambiguity. More generally, we need only regard a type as ambiguous if it
3327 contains a variable on the left of the => that is not uniquely determined
3328 (either directly or indirectly) by the variables on the right.
3329 </para>
3330 <para>
3331 Dependencies also help to produce more accurate types for user defined
3332 functions, and hence to provide earlier detection of errors, and less cluttered
3333 types for programmers to work with. Recall the previous definition for a
3334 function f: 
3335 <programlisting>
3336    f x y = insert x y = insert x . insert y
3337 </programlisting>
3338 for which we originally obtained a type: 
3339 <programlisting>
3340    f :: (Collects a c, Collects b c) => a -> b -> c -> c
3341 </programlisting>
3342 Given the dependency information that we have for Collects, however, we can
3343 deduce that a and b must be equal because they both appear as the second
3344 parameter in a Collects constraint with the same first parameter c. Hence we
3345 can infer a shorter and more accurate type for f: 
3346 <programlisting>
3347    f :: (Collects a c) => a -> a -> c -> c
3348 </programlisting>
3349 In a similar way, the earlier definition of g will now be flagged as a type error.
3350 </para>
3351 <para>
3352 Although we have given only a few examples here, it should be clear that the
3353 addition of dependency information can help to make multiple parameter classes
3354 more useful in practice, avoiding ambiguity problems, and allowing more general
3355 sets of instance declarations.
3356 </para>
3357 </sect4>
3358 </sect3>
3359 </sect2>
3360
3361 <sect2 id="instance-decls">
3362 <title>Instance declarations</title>
3363
3364 <para>An instance declaration has the form
3365 <screen>
3366   instance ( <replaceable>assertion</replaceable><subscript>1</subscript>, ..., <replaceable>assertion</replaceable><subscript>n</subscript>) =&gt; <replaceable>class</replaceable> <replaceable>type</replaceable><subscript>1</subscript> ... <replaceable>type</replaceable><subscript>m</subscript> where ...
3367 </screen>
3368 The part before the "<literal>=&gt;</literal>" is the
3369 <emphasis>context</emphasis>, while the part after the
3370 "<literal>=&gt;</literal>" is the <emphasis>head</emphasis> of the instance declaration.
3371 </para>
3372
3373 <sect3 id="flexible-instance-head">
3374 <title>Relaxed rules for the instance head</title>
3375
3376 <para>
3377 In Haskell 98 the head of an instance declaration
3378 must be of the form <literal>C (T a1 ... an)</literal>, where
3379 <literal>C</literal> is the class, <literal>T</literal> is a data type constructor,
3380 and the <literal>a1 ... an</literal> are distinct type variables.
3381 GHC relaxes these rules in two ways.
3382 <itemizedlist>
3383 <listitem>
3384 <para>
3385 The <option>-XFlexibleInstances</option> flag allows the head of the instance
3386 declaration to mention arbitrary nested types.
3387 For example, this becomes a legal instance declaration
3388 <programlisting>
3389   instance C (Maybe Int) where ...
3390 </programlisting>
3391 See also the <link linkend="instance-overlap">rules on overlap</link>.
3392 </para></listitem>
3393 <listitem><para>
3394 With the <option>-XTypeSynonymInstances</option> flag, instance heads may use type
3395 synonyms. As always, using a type synonym is just shorthand for
3396 writing the RHS of the type synonym definition.  For example:
3397
3398
3399 <programlisting>
3400   type Point = (Int,Int)
3401   instance C Point   where ...
3402   instance C [Point] where ...
3403 </programlisting>
3404
3405
3406 is legal.  However, if you added
3407
3408
3409 <programlisting>
3410   instance C (Int,Int) where ...
3411 </programlisting>
3412
3413
3414 as well, then the compiler will complain about the overlapping
3415 (actually, identical) instance declarations.  As always, type synonyms
3416 must be fully applied.  You cannot, for example, write:
3417
3418 <programlisting>
3419   type P a = [[a]]
3420   instance Monad P where ...
3421 </programlisting>
3422
3423 </para></listitem>
3424 </itemizedlist>
3425 </para>
3426 </sect3>
3427
3428 <sect3 id="instance-rules">
3429 <title>Relaxed rules for instance contexts</title>
3430
3431 <para>In Haskell 98, the assertions in the context of the instance declaration
3432 must be of the form <literal>C a</literal> where <literal>a</literal>
3433 is a type variable that occurs in the head.
3434 </para>
3435
3436 <para>
3437 The <option>-XFlexibleContexts</option> flag relaxes this rule, as well
3438 as the corresponding rule for type signatures (see <xref linkend="flexible-contexts"/>).
3439 With this flag the context of the instance declaration can each consist of arbitrary
3440 (well-kinded) assertions <literal>(C t1 ... tn)</literal> subject only to the
3441 following rules:
3442 <orderedlist>
3443 <listitem><para>
3444 The Paterson Conditions: for each assertion in the context
3445 <orderedlist>
3446 <listitem><para>No type variable has more occurrences in the assertion than in the head</para></listitem>
3447 <listitem><para>The assertion has fewer constructors and variables (taken together
3448       and counting repetitions) than the head</para></listitem>
3449 </orderedlist>
3450 </para></listitem>
3451
3452 <listitem><para>The Coverage Condition.  For each functional dependency,
3453 <replaceable>tvs</replaceable><subscript>left</subscript> <literal>-&gt;</literal>
3454 <replaceable>tvs</replaceable><subscript>right</subscript>,  of the class,
3455 every type variable in
3456 S(<replaceable>tvs</replaceable><subscript>right</subscript>) must appear in 
3457 S(<replaceable>tvs</replaceable><subscript>left</subscript>), where S is the
3458 substitution mapping each type variable in the class declaration to the
3459 corresponding type in the instance declaration.
3460 </para></listitem>
3461 </orderedlist>
3462 These restrictions ensure that context reduction terminates: each reduction
3463 step makes the problem smaller by at least one
3464 constructor.  Both the Paterson Conditions and the Coverage Condition are lifted 
3465 if you give the <option>-XUndecidableInstances</option> 
3466 flag (<xref linkend="undecidable-instances"/>).
3467 You can find lots of background material about the reason for these
3468 restrictions in the paper <ulink
3469 url="http://research.microsoft.com/%7Esimonpj/papers/fd%2Dchr/">
3470 Understanding functional dependencies via Constraint Handling Rules</ulink>.
3471 </para>
3472 <para>
3473 For example, these are OK:
3474 <programlisting>
3475   instance C Int [a]          -- Multiple parameters
3476   instance Eq (S [a])         -- Structured type in head
3477
3478       -- Repeated type variable in head
3479   instance C4 a a => C4 [a] [a] 
3480   instance Stateful (ST s) (MutVar s)
3481
3482       -- Head can consist of type variables only
3483   instance C a
3484   instance (Eq a, Show b) => C2 a b
3485
3486       -- Non-type variables in context
3487   instance Show (s a) => Show (Sized s a)
3488   instance C2 Int a => C3 Bool [a]
3489   instance C2 Int a => C3 [a] b
3490 </programlisting>
3491 But these are not:
3492 <programlisting>
3493       -- Context assertion no smaller than head
3494   instance C a => C a where ...
3495       -- (C b b) has more more occurrences of b than the head
3496   instance C b b => Foo [b] where ...
3497 </programlisting>
3498 </para>
3499
3500 <para>
3501 The same restrictions apply to instances generated by
3502 <literal>deriving</literal> clauses.  Thus the following is accepted:
3503 <programlisting>
3504   data MinHeap h a = H a (h a)
3505     deriving (Show)
3506 </programlisting>
3507 because the derived instance
3508 <programlisting>
3509   instance (Show a, Show (h a)) => Show (MinHeap h a)
3510 </programlisting>
3511 conforms to the above rules.
3512 </para>
3513
3514 <para>
3515 A useful idiom permitted by the above rules is as follows.
3516 If one allows overlapping instance declarations then it's quite
3517 convenient to have a "default instance" declaration that applies if
3518 something more specific does not:
3519 <programlisting>
3520   instance C a where
3521     op = ... -- Default
3522 </programlisting>
3523 </para>
3524 </sect3>
3525
3526 <sect3 id="undecidable-instances">
3527 <title>Undecidable instances</title>
3528
3529 <para>
3530 Sometimes even the rules of <xref linkend="instance-rules"/> are too onerous.
3531 For example, sometimes you might want to use the following to get the
3532 effect of a "class synonym":
3533 <programlisting>
3534   class (C1 a, C2 a, C3 a) => C a where { }
3535
3536   instance (C1 a, C2 a, C3 a) => C a where { }
3537 </programlisting>
3538 This allows you to write shorter signatures:
3539 <programlisting>
3540   f :: C a => ...
3541 </programlisting>
3542 instead of
3543 <programlisting>
3544   f :: (C1 a, C2 a, C3 a) => ...
3545 </programlisting>
3546 The restrictions on functional dependencies (<xref
3547 linkend="functional-dependencies"/>) are particularly troublesome.
3548 It is tempting to introduce type variables in the context that do not appear in
3549 the head, something that is excluded by the normal rules. For example:
3550 <programlisting>
3551   class HasConverter a b | a -> b where
3552      convert :: a -> b
3553    
3554   data Foo a = MkFoo a
3555
3556   instance (HasConverter a b,Show b) => Show (Foo a) where
3557      show (MkFoo value) = show (convert value)
3558 </programlisting>
3559 This is dangerous territory, however. Here, for example, is a program that would make the
3560 typechecker loop:
3561 <programlisting>
3562   class D a
3563   class F a b | a->b
3564   instance F [a] [[a]]
3565   instance (D c, F a c) => D [a]   -- 'c' is not mentioned in the head
3566 </programlisting>
3567 Similarly, it can be tempting to lift the coverage condition:
3568 <programlisting>
3569   class Mul a b c | a b -> c where
3570         (.*.) :: a -> b -> c
3571
3572   instance Mul Int Int Int where (.*.) = (*)
3573   instance Mul Int Float Float where x .*. y = fromIntegral x * y
3574   instance Mul a b c => Mul a [b] [c] where x .*. v = map (x.*.) v
3575 </programlisting>
3576 The third instance declaration does not obey the coverage condition;
3577 and indeed the (somewhat strange) definition:
3578 <programlisting>
3579   f = \ b x y -> if b then x .*. [y] else y
3580 </programlisting>
3581 makes instance inference go into a loop, because it requires the constraint
3582 <literal>(Mul a [b] b)</literal>.
3583 </para>
3584 <para>
3585 Nevertheless, GHC allows you to experiment with more liberal rules.  If you use
3586 the experimental flag <option>-XUndecidableInstances</option>
3587 <indexterm><primary>-XUndecidableInstances</primary></indexterm>, 
3588 both the Paterson Conditions and the Coverage Condition
3589 (described in <xref linkend="instance-rules"/>) are lifted.  Termination is ensured by having a
3590 fixed-depth recursion stack.  If you exceed the stack depth you get a
3591 sort of backtrace, and the opportunity to increase the stack depth
3592 with <option>-fcontext-stack=</option><emphasis>N</emphasis>.
3593 </para>
3594
3595 </sect3>
3596
3597
3598 <sect3 id="instance-overlap">
3599 <title>Overlapping instances</title>
3600 <para>
3601 In general, <emphasis>GHC requires that that it be unambiguous which instance
3602 declaration
3603 should be used to resolve a type-class constraint</emphasis>. This behaviour
3604 can be modified by two flags: <option>-XOverlappingInstances</option>
3605 <indexterm><primary>-XOverlappingInstances
3606 </primary></indexterm> 
3607 and <option>-XIncoherentInstances</option>
3608 <indexterm><primary>-XIncoherentInstances
3609 </primary></indexterm>, as this section discusses.  Both these
3610 flags are dynamic flags, and can be set on a per-module basis, using 
3611 an <literal>OPTIONS_GHC</literal> pragma if desired (<xref linkend="source-file-options"/>).</para>
3612 <para>
3613 When GHC tries to resolve, say, the constraint <literal>C Int Bool</literal>,
3614 it tries to match every instance declaration against the
3615 constraint,
3616 by instantiating the head of the instance declaration.  For example, consider
3617 these declarations:
3618 <programlisting>
3619   instance context1 => C Int a     where ...  -- (A)
3620   instance context2 => C a   Bool  where ...  -- (B)
3621   instance context3 => C Int [a]   where ...  -- (C)
3622   instance context4 => C Int [Int] where ...  -- (D)
3623 </programlisting>
3624 The instances (A) and (B) match the constraint <literal>C Int Bool</literal>, 
3625 but (C) and (D) do not.  When matching, GHC takes
3626 no account of the context of the instance declaration
3627 (<literal>context1</literal> etc).
3628 GHC's default behaviour is that <emphasis>exactly one instance must match the
3629 constraint it is trying to resolve</emphasis>.  
3630 It is fine for there to be a <emphasis>potential</emphasis> of overlap (by
3631 including both declarations (A) and (B), say); an error is only reported if a 
3632 particular constraint matches more than one.
3633 </para>
3634
3635 <para>
3636 The <option>-XOverlappingInstances</option> flag instructs GHC to allow
3637 more than one instance to match, provided there is a most specific one.  For
3638 example, the constraint <literal>C Int [Int]</literal> matches instances (A),
3639 (C) and (D), but the last is more specific, and hence is chosen.  If there is no
3640 most-specific match, the program is rejected.
3641 </para>
3642 <para>
3643 However, GHC is conservative about committing to an overlapping instance.  For example:
3644 <programlisting>
3645   f :: [b] -> [b]
3646   f x = ...
3647 </programlisting>
3648 Suppose that from the RHS of <literal>f</literal> we get the constraint
3649 <literal>C Int [b]</literal>.  But
3650 GHC does not commit to instance (C), because in a particular
3651 call of <literal>f</literal>, <literal>b</literal> might be instantiate 
3652 to <literal>Int</literal>, in which case instance (D) would be more specific still.
3653 So GHC rejects the program.  
3654 (If you add the flag <option>-XIncoherentInstances</option>,
3655 GHC will instead pick (C), without complaining about 
3656 the problem of subsequent instantiations.)
3657 </para>
3658 <para>
3659 Notice that we gave a type signature to <literal>f</literal>, so GHC had to
3660 <emphasis>check</emphasis> that <literal>f</literal> has the specified type.  
3661 Suppose instead we do not give a type signature, asking GHC to <emphasis>infer</emphasis>
3662 it instead.  In this case, GHC will refrain from
3663 simplifying the constraint <literal>C Int [b]</literal> (for the same reason
3664 as before) but, rather than rejecting the program, it will infer the type
3665 <programlisting>
3666   f :: C Int [b] => [b] -> [b]
3667 </programlisting>
3668 That postpones the question of which instance to pick to the 
3669 call site for <literal>f</literal>
3670 by which time more is known about the type <literal>b</literal>.
3671 You can write this type signature yourself if you use the 
3672 <link linkend="flexible-contexts"><option>-XFlexibleContexts</option></link>
3673 flag.
3674 </para>
3675 <para>
3676 Exactly the same situation can arise in instance declarations themselves.  Suppose we have
3677 <programlisting>
3678   class Foo a where
3679      f :: a -> a
3680   instance Foo [b] where
3681      f x = ...
3682 </programlisting>
3683 and, as before, the constraint <literal>C Int [b]</literal> arises from <literal>f</literal>'s
3684 right hand side.  GHC will reject the instance, complaining as before that it does not know how to resolve
3685 the constraint <literal>C Int [b]</literal>, because it matches more than one instance
3686 declaration.  The solution is to postpone the choice by adding the constraint to the context
3687 of the instance declaration, thus:
3688 <programlisting>
3689   instance C Int [b] => Foo [b] where
3690      f x = ...
3691 </programlisting>
3692 (You need <link linkend="instance-rules"><option>-XFlexibleInstances</option></link> to do this.)
3693 </para>
3694 <para>
3695 The willingness to be overlapped or incoherent is a property of 
3696 the <emphasis>instance declaration</emphasis> itself, controlled by the
3697 presence or otherwise of the <option>-XOverlappingInstances</option> 
3698 and <option>-XIncoherentInstances</option> flags when that module is
3699 being defined.  Neither flag is required in a module that imports and uses the
3700 instance declaration.  Specifically, during the lookup process:
3701 <itemizedlist>
3702 <listitem><para>
3703 An instance declaration is ignored during the lookup process if (a) a more specific
3704 match is found, and (b) the instance declaration was compiled with 
3705 <option>-XOverlappingInstances</option>.  The flag setting for the
3706 more-specific instance does not matter.
3707 </para></listitem>
3708 <listitem><para>
3709 Suppose an instance declaration does not match the constraint being looked up, but
3710 does unify with it, so that it might match when the constraint is further 
3711 instantiated.  Usually GHC will regard this as a reason for not committing to
3712 some other constraint.  But if the instance declaration was compiled with
3713 <option>-XIncoherentInstances</option>, GHC will skip the "does-it-unify?" 
3714 check for that declaration.
3715 </para></listitem>
3716 </itemizedlist>
3717 These rules make it possible for a library author to design a library that relies on 
3718 overlapping instances without the library client having to know.  
3719 </para>
3720 <para>
3721 If an instance declaration is compiled without
3722 <option>-XOverlappingInstances</option>,
3723 then that instance can never be overlapped.  This could perhaps be
3724 inconvenient.  Perhaps the rule should instead say that the
3725 <emphasis>overlapping</emphasis> instance declaration should be compiled in
3726 this way, rather than the <emphasis>overlapped</emphasis> one.  Perhaps overlap
3727 at a usage site should be permitted regardless of how the instance declarations
3728 are compiled, if the <option>-XOverlappingInstances</option> flag is
3729 used at the usage site.  (Mind you, the exact usage site can occasionally be
3730 hard to pin down.)  We are interested to receive feedback on these points.
3731 </para>
3732 <para>The <option>-XIncoherentInstances</option> flag implies the
3733 <option>-XOverlappingInstances</option> flag, but not vice versa.
3734 </para>
3735 </sect3>
3736
3737
3738
3739 </sect2>
3740
3741 <sect2 id="overloaded-strings">
3742 <title>Overloaded string literals
3743 </title>
3744
3745 <para>
3746 GHC supports <emphasis>overloaded string literals</emphasis>.  Normally a
3747 string literal has type <literal>String</literal>, but with overloaded string
3748 literals enabled (with <literal>-XOverloadedStrings</literal>)
3749  a string literal has type <literal>(IsString a) => a</literal>.
3750 </para>
3751 <para>
3752 This means that the usual string syntax can be used, e.g., for packed strings
3753 and other variations of string like types.  String literals behave very much
3754 like integer literals, i.e., they can be used in both expressions and patterns.
3755 If used in a pattern the literal with be replaced by an equality test, in the same
3756 way as an integer literal is.
3757 </para>
3758 <para>
3759 The class <literal>IsString</literal> is defined as:
3760 <programlisting>
3761 class IsString a where
3762     fromString :: String -> a
3763 </programlisting>
3764 The only predefined instance is the obvious one to make strings work as usual:
3765 <programlisting>
3766 instance IsString [Char] where
3767     fromString cs = cs
3768 </programlisting>
3769 The class <literal>IsString</literal> is not in scope by default.  If you want to mention
3770 it explicitly (for example, to give an instance declaration for it), you can import it
3771 from module <literal>GHC.Exts</literal>.
3772 </para>
3773 <para>
3774 Haskell's defaulting mechanism is extended to cover string literals, when <option>-XOverloadedStrings</option> is specified.
3775 Specifically:
3776 <itemizedlist>
3777 <listitem><para>
3778 Each type in a default declaration must be an 
3779 instance of <literal>Num</literal> <emphasis>or</emphasis> of <literal>IsString</literal>.
3780 </para></listitem>
3781
3782 <listitem><para>
3783 The standard defaulting rule (<ulink url="http://www.haskell.org/onlinereport/decls.html#sect4.3.4">Haskell Report, Section 4.3.4</ulink>)
3784 is extended thus: defaulting applies when all the unresolved constraints involve standard classes
3785 <emphasis>or</emphasis> <literal>IsString</literal>; and at least one is a numeric class
3786 <emphasis>or</emphasis> <literal>IsString</literal>.
3787 </para></listitem>
3788 </itemizedlist>
3789 </para>
3790 <para>
3791 A small example:
3792 <programlisting>
3793 module Main where
3794
3795 import GHC.Exts( IsString(..) )
3796
3797 newtype MyString = MyString String deriving (Eq, Show)
3798 instance IsString MyString where
3799     fromString = MyString
3800
3801 greet :: MyString -> MyString
3802 greet "hello" = "world"
3803 greet other = other
3804
3805 main = do
3806     print $ greet "hello"
3807     print $ greet "fool"
3808 </programlisting>
3809 </para>
3810 <para>
3811 Note that deriving <literal>Eq</literal> is necessary for the pattern matching
3812 to work since it gets translated into an equality comparison.
3813 </para>
3814 </sect2>
3815
3816 </sect1>
3817
3818 <sect1 id="type-families">
3819 <title>Type families</title>
3820
3821 <para>
3822   <firstterm>Indexed type families</firstterm> are a new GHC extension to
3823   facilitate type-level 
3824   programming. Type families are a generalisation of <firstterm>associated
3825   data types</firstterm> 
3826   (&ldquo;<ulink url="http://www.cse.unsw.edu.au/~chak/papers/CKPM05.html">Associated 
3827   Types with Class</ulink>&rdquo;, M. Chakravarty, G. Keller, S. Peyton Jones,
3828   and S. Marlow. In Proceedings of &ldquo;The 32nd Annual ACM SIGPLAN-SIGACT
3829      Symposium on Principles of Programming Languages (POPL'05)&rdquo;, pages
3830   1-13, ACM Press, 2005) and <firstterm>associated type synonyms</firstterm>
3831   (&ldquo;<ulink url="http://www.cse.unsw.edu.au/~chak/papers/CKP05.html">Type  
3832   Associated Type Synonyms</ulink>&rdquo;. M. Chakravarty, G. Keller, and
3833   S. Peyton Jones. 
3834   In Proceedings of &ldquo;The Tenth ACM SIGPLAN International Conference on
3835   Functional Programming&rdquo;, ACM Press, pages 241-253, 2005).  Type families
3836   themselves are described in the paper &ldquo;<ulink 
3837   url="http://www.cse.unsw.edu.au/~chak/papers/SPCS08.html">Type
3838   Checking with Open Type Functions</ulink>&rdquo;, T. Schrijvers,
3839   S. Peyton-Jones, 
3840   M. Chakravarty, and M. Sulzmann, in Proceedings of &ldquo;ICFP 2008: The
3841   13th ACM SIGPLAN International Conference on Functional
3842   Programming&rdquo;, ACM Press, pages 51-62, 2008. Type families
3843   essentially provide type-indexed data types and named functions on types,
3844   which are useful for generic programming and highly parameterised library
3845   interfaces as well as interfaces with enhanced static information, much like
3846   dependent types. They might also be regarded as an alternative to functional
3847   dependencies, but provide a more functional style of type-level programming
3848   than the relational style of functional dependencies. 
3849 </para>
3850 <para>
3851   Indexed type families, or type families for short, are type constructors that
3852   represent sets of types. Set members are denoted by supplying the type family
3853   constructor with type parameters, which are called <firstterm>type
3854   indices</firstterm>. The 
3855   difference between vanilla parametrised type constructors and family
3856   constructors is much like between parametrically polymorphic functions and
3857   (ad-hoc polymorphic) methods of type classes. Parametric polymorphic functions
3858   behave the same at all type instances, whereas class methods can change their
3859   behaviour in dependence on the class type parameters. Similarly, vanilla type
3860   constructors imply the same data representation for all type instances, but
3861   family constructors can have varying representation types for varying type
3862   indices. 
3863 </para>
3864 <para>
3865   Indexed type families come in two flavours: <firstterm>data
3866     families</firstterm> and <firstterm>type synonym 
3867     families</firstterm>. They are the indexed family variants of algebraic
3868   data types and type synonyms, respectively. The instances of data families
3869   can be data types and newtypes. 
3870 </para>
3871 <para>
3872   Type families are enabled by the flag <option>-XTypeFamilies</option>.
3873   Additional information on the use of type families in GHC is available on
3874   <ulink url="http://www.haskell.org/haskellwiki/GHC/Indexed_types">the
3875   Haskell wiki page on type families</ulink>.
3876 </para>
3877
3878 <sect2 id="data-families">
3879   <title>Data families</title>
3880
3881   <para>
3882     Data families appear in two flavours: (1) they can be defined on the
3883     toplevel 
3884     or (2) they can appear inside type classes (in which case they are known as
3885     associated types). The former is the more general variant, as it lacks the
3886     requirement for the type-indexes to coincide with the class
3887     parameters. However, the latter can lead to more clearly structured code and
3888     compiler warnings if some type instances were - possibly accidentally -
3889     omitted. In the following, we always discuss the general toplevel form first
3890     and then cover the additional constraints placed on associated types.
3891   </para>
3892
3893   <sect3 id="data-family-declarations"> 
3894     <title>Data family declarations</title>
3895
3896     <para>
3897       Indexed data families are introduced by a signature, such as 
3898 <programlisting>
3899 data family GMap k :: * -> *
3900 </programlisting>
3901       The special <literal>family</literal> distinguishes family from standard
3902       data declarations.  The result kind annotation is optional and, as
3903       usual, defaults to <literal>*</literal> if omitted.  An example is
3904 <programlisting>
3905 data family Array e
3906 </programlisting>
3907       Named arguments can also be given explicit kind signatures if needed.
3908       Just as with
3909       [http://www.haskell.org/ghc/docs/latest/html/users_guide/gadt.html GADT
3910       declarations] named arguments are entirely optional, so that we can
3911       declare <literal>Array</literal> alternatively with 
3912 <programlisting>
3913 data family Array :: * -> *
3914 </programlisting>
3915     </para>
3916
3917     <sect4 id="assoc-data-family-decl">
3918       <title>Associated data family declarations</title>
3919       <para>
3920         When a data family is declared as part of a type class, we drop
3921         the <literal>family</literal> special.  The <literal>GMap</literal>
3922         declaration takes the following form 
3923 <programlisting>
3924 class GMapKey k where
3925   data GMap k :: * -> *
3926   ...
3927 </programlisting>
3928         In contrast to toplevel declarations, named arguments must be used for
3929         all type parameters that are to be used as type-indexes.  Moreover,
3930         the argument names must be class parameters.  Each class parameter may
3931         only be used at most once per associated type, but some may be omitted
3932         and they may be in an order other than in the class head.  Hence, the
3933         following contrived example is admissible: 
3934 <programlisting>
3935   class C a b c where
3936   data T c a :: *
3937 </programlisting>
3938       </para>
3939     </sect4>
3940   </sect3>
3941
3942   <sect3 id="data-instance-declarations"> 
3943     <title>Data instance declarations</title>
3944
3945     <para>
3946       Instance declarations of data and newtype families are very similar to
3947       standard data and newtype declarations.  The only two differences are
3948       that the keyword <literal>data</literal> or <literal>newtype</literal>
3949       is followed by <literal>instance</literal> and that some or all of the
3950       type arguments can be non-variable types, but may not contain forall
3951       types or type synonym families.  However, data families are generally
3952       allowed in type parameters, and type synonyms are allowed as long as
3953       they are fully applied and expand to a type that is itself admissible -
3954       exactly as this is required for occurrences of type synonyms in class
3955       instance parameters.  For example, the <literal>Either</literal>
3956       instance for <literal>GMap</literal> is 
3957 <programlisting>
3958 data instance GMap (Either a b) v = GMapEither (GMap a v) (GMap b v)
3959 </programlisting>
3960       In this example, the declaration has only one variant.  In general, it
3961       can be any number.
3962     </para>
3963     <para>
3964       Data and newtype instance declarations are only permitted when an
3965       appropriate family declaration is in scope - just as a class instance declaratoin
3966       requires the class declaration to be visible.  Moreover, each instance
3967       declaration has to conform to the kind determined by its family
3968       declaration.  This implies that the number of parameters of an instance
3969       declaration matches the arity determined by the kind of the family.
3970     </para>
3971     <para>
3972       A data family instance declaration can use the full exprssiveness of
3973       ordinary <literal>data</literal> or <literal>newtype</literal> declarations:
3974       <itemizedlist>
3975       <listitem><para> Although, a data family is <emphasis>introduced</emphasis> with
3976       the keyword "<literal>data</literal>", a data family <emphasis>instance</emphasis> can 
3977       use either <literal>data</literal> or <literal>newtype</literal>. For example:
3978 <programlisting>
3979 data family T a
3980 data    instance T Int  = T1 Int | T2 Bool
3981 newtype instance T Char = TC Bool
3982 </programlisting>
3983       </para></listitem>
3984       <listitem><para> A <literal>data instance</literal> can use GADT syntax for the data constructors,
3985       and indeed can define a GADT.  For example:
3986 <programlisting>
3987 data family G a b
3988 data instance G [a] b where
3989    G1 :: c -> G [Int] b
3990    G2 :: G [a] Bool
3991 </programlisting>
3992       </para></listitem>
3993       <listitem><para> You can use a <literal>deriving</literal> clause on a
3994       <literal>data instance</literal> or <literal>newtype instance</literal>
3995       declaration.
3996       </para></listitem>
3997       </itemizedlist>
3998     </para>
3999
4000     <para>
4001       Even if type families are defined as toplevel declarations, functions
4002       that perform different computations for different family instances may still
4003       need to be defined as methods of type classes.  In particular, the
4004       following is not possible: 
4005 <programlisting>
4006 data family T a
4007 data instance T Int  = A
4008 data instance T Char = B
4009 foo :: T a -> Int
4010 foo A = 1             -- WRONG: These two equations together...
4011 foo B = 2             -- ...will produce a type error.
4012 </programlisting>
4013 Instead, you would have to write <literal>foo</literal> as a class operation, thus:
4014 <programlisting>
4015 class C a where 
4016   foo :: T a -> Int
4017 instance Foo Int where
4018   foo A = 1
4019 instance Foo Char where
4020   foo B = 2
4021 </programlisting>
4022       (Given the functionality provided by GADTs (Generalised Algebraic Data
4023       Types), it might seem as if a definition, such as the above, should be
4024       feasible.  However, type families are - in contrast to GADTs - are
4025       <emphasis>open;</emphasis> i.e., new instances can always be added,
4026       possibly in other 
4027       modules.  Supporting pattern matching across different data instances
4028       would require a form of extensible case construct.)
4029     </para>
4030
4031     <sect4 id="assoc-data-inst">
4032       <title>Associated data instances</title>
4033       <para>
4034         When an associated data family instance is declared within a type
4035         class instance, we drop the <literal>instance</literal> keyword in the
4036         family instance.  So, the <literal>Either</literal> instance
4037         for <literal>GMap</literal> becomes: 
4038 <programlisting>
4039 instance (GMapKey a, GMapKey b) => GMapKey (Either a b) where
4040   data GMap (Either a b) v = GMapEither (GMap a v) (GMap b v)
4041   ...
4042 </programlisting>
4043         The most important point about associated family instances is that the
4044         type indexes corresponding to class parameters must be identical to
4045         the type given in the instance head; here this is the first argument
4046         of <literal>GMap</literal>, namely <literal>Either a b</literal>,
4047         which coincides with the only class parameter.  Any parameters to the
4048         family constructor that do not correspond to class parameters, need to
4049         be variables in every instance; here this is the
4050         variable <literal>v</literal>. 
4051       </para>
4052       <para>
4053         Instances for an associated family can only appear as part of
4054         instances declarations of the class in which the family was declared -
4055         just as with the equations of the methods of a class.  Also in
4056         correspondence to how methods are handled, declarations of associated
4057         types can be omitted in class instances.  If an associated family
4058         instance is omitted, the corresponding instance type is not inhabited;
4059         i.e., only diverging expressions, such
4060         as <literal>undefined</literal>, can assume the type. 
4061       </para>
4062     </sect4>
4063
4064     <sect4 id="scoping-class-params">
4065       <title>Scoping of class parameters</title>
4066       <para>
4067         In the case of multi-parameter type classes, the visibility of class
4068         parameters in the right-hand side of associated family instances
4069         depends <emphasis>solely</emphasis> on the parameters of the data
4070         family.  As an example, consider the simple class declaration 
4071 <programlisting>
4072 class C a b where
4073   data T a
4074 </programlisting>
4075         Only one of the two class parameters is a parameter to the data
4076         family.  Hence, the following instance declaration is invalid: 
4077 <programlisting>
4078 instance C [c] d where
4079   data T [c] = MkT (c, d)    -- WRONG!!  'd' is not in scope
4080 </programlisting>
4081         Here, the right-hand side of the data instance mentions the type
4082         variable <literal>d</literal> that does not occur in its left-hand
4083         side.  We cannot admit such data instances as they would compromise
4084         type safety. 
4085       </para>
4086     </sect4>
4087
4088     <sect4 id="family-class-inst">
4089       <title>Type class instances of family instances</title>
4090       <para>
4091         Type class instances of instances of data families can be defined as
4092         usual, and in particular data instance declarations can
4093         have <literal>deriving</literal> clauses.  For example, we can write 
4094 <programlisting>
4095 data GMap () v = GMapUnit (Maybe v)
4096                deriving Show
4097 </programlisting>
4098         which implicitly defines an instance of the form
4099 <programlisting>
4100 instance Show v => Show (GMap () v) where ...
4101 </programlisting>
4102       </para>
4103       <para>
4104         Note that class instances are always for
4105         particular <emphasis>instances</emphasis> of a data family and never
4106         for an entire family as a whole.  This is for essentially the same
4107         reasons that we cannot define a toplevel function that performs
4108         pattern matching on the data constructors
4109         of <emphasis>different</emphasis> instances of a single type family.
4110         It would require a form of extensible case construct. 
4111       </para>
4112     </sect4>
4113
4114     <sect4 id="data-family-overlap">
4115       <title>Overlap of data instances</title>
4116       <para>
4117         The instance declarations of a data family used in a single program
4118         may not overlap at all, independent of whether they are associated or
4119         not.  In contrast to type class instances, this is not only a matter
4120         of consistency, but one of type safety. 
4121       </para>
4122     </sect4>
4123
4124   </sect3>
4125
4126   <sect3 id="data-family-import-export">
4127     <title>Import and export</title>
4128
4129     <para>
4130       The association of data constructors with type families is more dynamic
4131       than that is the case with standard data and newtype declarations.  In
4132       the standard case, the notation <literal>T(..)</literal> in an import or
4133       export list denotes the type constructor and all the data constructors
4134       introduced in its declaration.  However, a family declaration never
4135       introduces any data constructors; instead, data constructors are
4136       introduced by family instances.  As a result, which data constructors
4137       are associated with a type family depends on the currently visible
4138       instance declarations for that family.  Consequently, an import or
4139       export item of the form <literal>T(..)</literal> denotes the family
4140       constructor and all currently visible data constructors - in the case of
4141       an export item, these may be either imported or defined in the current
4142       module.  The treatment of import and export items that explicitly list
4143       data constructors, such as <literal>GMap(GMapEither)</literal>, is
4144       analogous. 
4145     </para>
4146
4147     <sect4 id="data-family-impexp-assoc">
4148       <title>Associated families</title>
4149       <para>
4150         As expected, an import or export item of the
4151         form <literal>C(..)</literal> denotes all of the class' methods and
4152         associated types.  However, when associated types are explicitly
4153         listed as subitems of a class, we need some new syntax, as uppercase
4154         identifiers as subitems are usually data constructors, not type
4155         constructors.  To clarify that we denote types here, each associated
4156         type name needs to be prefixed by the keyword <literal>type</literal>.
4157         So for example, when explicitly listing the components of
4158         the <literal>GMapKey</literal> class, we write <literal>GMapKey(type
4159         GMap, empty, lookup, insert)</literal>. 
4160       </para>
4161     </sect4>
4162
4163     <sect4 id="data-family-impexp-examples">
4164       <title>Examples</title>
4165       <para>
4166         Assuming our running <literal>GMapKey</literal> class example, let us
4167         look at some export lists and their meaning: 
4168         <itemizedlist>
4169           <listitem>
4170             <para><literal>module GMap (GMapKey) where...</literal>: Exports
4171               just the class name.</para>
4172           </listitem>
4173           <listitem>
4174             <para><literal>module GMap (GMapKey(..)) where...</literal>:
4175               Exports the class, the associated type <literal>GMap</literal>
4176               and the member
4177               functions <literal>empty</literal>, <literal>lookup</literal>,
4178               and <literal>insert</literal>.  None of the data constructors is 
4179               exported.</para>
4180           </listitem> 
4181           <listitem>
4182             <para><literal>module GMap (GMapKey(..), GMap(..))
4183                 where...</literal>: As before, but also exports all the data
4184               constructors <literal>GMapInt</literal>, 
4185               <literal>GMapChar</literal>,  
4186               <literal>GMapUnit</literal>, <literal>GMapPair</literal>,
4187               and <literal>GMapUnit</literal>.</para>
4188           </listitem>
4189           <listitem>
4190             <para><literal>module GMap (GMapKey(empty, lookup, insert),
4191             GMap(..)) where...</literal>: As before.</para>
4192           </listitem>
4193           <listitem>
4194             <para><literal>module GMap (GMapKey, empty, lookup, insert, GMap(..))
4195                 where...</literal>: As before.</para>
4196           </listitem>
4197         </itemizedlist>
4198       </para>
4199       <para>
4200         Finally, you can write <literal>GMapKey(type GMap)</literal> to denote
4201         both the class <literal>GMapKey</literal> as well as its associated
4202         type <literal>GMap</literal>.  However, you cannot
4203         write <literal>GMapKey(type GMap(..))</literal> &mdash; i.e.,
4204         sub-component specifications cannot be nested.  To
4205         specify <literal>GMap</literal>'s data constructors, you have to list
4206         it separately. 
4207       </para>
4208     </sect4>
4209
4210     <sect4 id="data-family-impexp-instances">
4211       <title>Instances</title>
4212       <para>
4213         Family instances are implicitly exported, just like class instances.
4214         However, this applies only to the heads of instances, not to the data
4215         constructors an instance defines. 
4216       </para>
4217     </sect4>
4218
4219   </sect3>
4220
4221 </sect2>
4222
4223 <sect2 id="synonym-families">
4224   <title>Synonym families</title>
4225
4226   <para>
4227     Type families appear in two flavours: (1) they can be defined on the
4228     toplevel or (2) they can appear inside type classes (in which case they
4229     are known as associated type synonyms).  The former is the more general
4230     variant, as it lacks the requirement for the type-indexes to coincide with
4231     the class parameters.  However, the latter can lead to more clearly
4232     structured code and compiler warnings if some type instances were -
4233     possibly accidentally - omitted.  In the following, we always discuss the
4234     general toplevel form first and then cover the additional constraints
4235     placed on associated types.
4236   </para>
4237
4238   <sect3 id="type-family-declarations">
4239     <title>Type family declarations</title>
4240
4241     <para>
4242       Indexed type families are introduced by a signature, such as 
4243 <programlisting>
4244 type family Elem c :: *
4245 </programlisting>
4246       The special <literal>family</literal> distinguishes family from standard
4247       type declarations.  The result kind annotation is optional and, as
4248       usual, defaults to <literal>*</literal> if omitted.  An example is 
4249 <programlisting>
4250 type family Elem c
4251 </programlisting>
4252       Parameters can also be given explicit kind signatures if needed.  We
4253       call the number of parameters in a type family declaration, the family's
4254       arity, and all applications of a type family must be fully saturated
4255       w.r.t. to that arity.  This requirement is unlike ordinary type synonyms
4256       and it implies that the kind of a type family is not sufficient to
4257       determine a family's arity, and hence in general, also insufficient to
4258       determine whether a type family application is well formed.  As an
4259       example, consider the following declaration: 
4260 <programlisting>
4261 type family F a b :: * -> *   -- F's arity is 2, 
4262                               -- although it's overall kind is * -> * -> * -> *
4263 </programlisting>
4264       Given this declaration the following are examples of well-formed and
4265       malformed types: 
4266 <programlisting>
4267 F Char [Int]       -- OK!  Kind: * -> *
4268 F Char [Int] Bool  -- OK!  Kind: *
4269 F IO Bool          -- WRONG: kind mismatch in the first argument
4270 F Bool             -- WRONG: unsaturated application
4271 </programlisting>
4272       </para>
4273
4274     <sect4 id="assoc-type-family-decl">
4275       <title>Associated type family declarations</title>
4276       <para>
4277         When a type family is declared as part of a type class, we drop
4278         the <literal>family</literal> special.  The <literal>Elem</literal>
4279         declaration takes the following form 
4280 <programlisting>
4281 class Collects ce where
4282   type Elem ce :: *
4283   ...
4284 </programlisting>
4285         The argument names of the type family must be class parameters.  Each
4286         class parameter may only be used at most once per associated type, but
4287         some may be omitted and they may be in an order other than in the
4288         class head.  Hence, the following contrived example is admissible: 
4289 <programlisting>
4290 class C a b c where
4291   type T c a :: *
4292 </programlisting>
4293         These rules are exactly as for associated data families.
4294       </para>
4295     </sect4>
4296   </sect3>
4297
4298   <sect3 id="type-instance-declarations">
4299     <title>Type instance declarations</title>
4300     <para>
4301       Instance declarations of type families are very similar to standard type
4302       synonym declarations.  The only two differences are that the
4303       keyword <literal>type</literal> is followed
4304       by <literal>instance</literal> and that some or all of the type
4305       arguments can be non-variable types, but may not contain forall types or
4306       type synonym families. However, data families are generally allowed, and
4307       type synonyms are allowed as long as they are fully applied and expand
4308       to a type that is admissible - these are the exact same requirements as
4309       for data instances.  For example, the <literal>[e]</literal> instance
4310       for <literal>Elem</literal> is 
4311 <programlisting>
4312 type instance Elem [e] = e
4313 </programlisting>
4314     </para>
4315     <para>
4316       Type family instance declarations are only legitimate when an
4317       appropriate family declaration is in scope - just like class instances
4318       require the class declaration to be visible.  Moreover, each instance
4319       declaration has to conform to the kind determined by its family
4320       declaration, and the number of type parameters in an instance
4321       declaration must match the number of type parameters in the family
4322       declaration.   Finally, the right-hand side of a type instance must be a
4323       monotype (i.e., it may not include foralls) and after the expansion of
4324       all saturated vanilla type synonyms, no synonyms, except family synonyms
4325       may remain.  Here are some examples of admissible and illegal type
4326       instances: 
4327 <programlisting>
4328 type family F a :: *
4329 type instance F [Int]              = Int         -- OK!
4330 type instance F String             = Char        -- OK!
4331 type instance F (F a)              = a           -- WRONG: type parameter mentions a type family
4332 type instance F (forall a. (a, b)) = b           -- WRONG: a forall type appears in a type parameter
4333 type instance F Float              = forall a.a  -- WRONG: right-hand side may not be a forall type
4334
4335 type family G a b :: * -> *
4336 type instance G Int            = (,)     -- WRONG: must be two type parameters
4337 type instance G Int Char Float = Double  -- WRONG: must be two type parameters
4338 </programlisting>
4339     </para>
4340
4341     <sect4 id="assoc-type-instance">
4342       <title>Associated type instance declarations</title>
4343       <para>
4344         When an associated family instance is declared within a type class
4345         instance, we drop the <literal>instance</literal> keyword in the family
4346         instance.  So, the <literal>[e]</literal> instance
4347         for <literal>Elem</literal> becomes: 
4348 <programlisting>
4349 instance (Eq (Elem [e])) => Collects ([e]) where
4350   type Elem [e] = e
4351   ...
4352 </programlisting>
4353         The most important point about associated family instances is that the
4354         type indexes corresponding to class parameters must be identical to the
4355         type given in the instance head; here this is <literal>[e]</literal>,
4356         which coincides with the only class parameter. 
4357       </para>
4358       <para>
4359         Instances for an associated family can only appear as part of  instances
4360         declarations of the class in which the family was declared - just as
4361         with the equations of the methods of a class.  Also in correspondence to
4362         how methods are handled, declarations of associated types can be omitted
4363         in class instances.  If an associated family instance is omitted, the
4364         corresponding instance type is not inhabited; i.e., only diverging
4365         expressions, such as <literal>undefined</literal>, can assume the type. 
4366       </para>
4367     </sect4>
4368
4369     <sect4 id="type-family-overlap">
4370       <title>Overlap of type synonym instances</title>
4371       <para>
4372         The instance declarations of a type family used in a single program
4373         may only overlap if the right-hand sides of the overlapping instances
4374         coincide for the overlapping types.  More formally, two instance
4375         declarations overlap if there is a substitution that makes the
4376         left-hand sides of the instances syntactically the same.  Whenever
4377         that is the case, the right-hand sides of the instances must also be
4378         syntactically equal under the same substitution.  This condition is
4379         independent of whether the type family is associated or not, and it is
4380         not only a matter of consistency, but one of type safety. 
4381       </para>
4382       <para>
4383         Here are two example to illustrate the condition under which overlap
4384         is permitted. 
4385 <programlisting>
4386 type instance F (a, Int) = [a]
4387 type instance F (Int, b) = [b]   -- overlap permitted
4388
4389 type instance G (a, Int)  = [a]
4390 type instance G (Char, a) = [a]  -- ILLEGAL overlap, as [Char] /= [Int]
4391 </programlisting>
4392       </para>
4393     </sect4>
4394
4395     <sect4 id="type-family-decidability">
4396       <title>Decidability of type synonym instances</title>
4397       <para>
4398         In order to guarantee that type inference in the presence of type
4399         families decidable, we need to place a number of additional
4400         restrictions on the formation of type instance declarations (c.f.,
4401         Definition 5 (Relaxed Conditions) of &ldquo;<ulink 
4402         url="http://www.cse.unsw.edu.au/~chak/papers/SPCS08.html">Type
4403           Checking with Open Type Functions</ulink>&rdquo;).  Instance
4404           declarations have the general form 
4405 <programlisting>
4406 type instance F t1 .. tn = t
4407 </programlisting>
4408         where we require that for every type family application <literal>(G s1
4409         .. sm)</literal> in <literal>t</literal>,  
4410         <orderedlist>
4411           <listitem>
4412             <para><literal>s1 .. sm</literal> do not contain any type family
4413             constructors,</para>
4414           </listitem>
4415           <listitem>
4416             <para>the total number of symbols (data type constructors and type
4417             variables) in <literal>s1 .. sm</literal> is strictly smaller than
4418             in <literal>t1 .. tn</literal>, and</para> 
4419           </listitem>
4420           <listitem>
4421             <para>for every type
4422             variable <literal>a</literal>, <literal>a</literal> occurs
4423             in <literal>s1 .. sm</literal> at most as often as in <literal>t1
4424             .. tn</literal>.</para>
4425           </listitem>
4426         </orderedlist>
4427         These restrictions are easily verified and ensure termination of type
4428         inference.  However, they are not sufficient to guarantee completeness
4429         of type inference in the presence of, so called, ''loopy equalities'',
4430         such as <literal>a ~ [F a]</literal>, where a recursive occurrence of
4431         a type variable is underneath a family application and data
4432         constructor application - see the above mentioned paper for details.   
4433       </para>
4434       <para>
4435         If the option <option>-XUndecidableInstances</option> is passed to the
4436         compiler, the above restrictions are not enforced and it is on the
4437         programmer to ensure termination of the normalisation of type families
4438         during type inference. 
4439       </para>
4440     </sect4>
4441   </sect3>
4442
4443   <sect3 id-="equality-constraints">
4444     <title>Equality constraints</title>
4445     <para>
4446       Type context can include equality constraints of the form <literal>t1 ~
4447       t2</literal>, which denote that the types <literal>t1</literal>
4448       and <literal>t2</literal> need to be the same.  In the presence of type
4449       families, whether two types are equal cannot generally be decided
4450       locally.  Hence, the contexts of function signatures may include
4451       equality constraints, as in the following example: 
4452 <programlisting>
4453 sumCollects :: (Collects c1, Collects c2, Elem c1 ~ Elem c2) => c1 -> c2 -> c2
4454 </programlisting>
4455       where we require that the element type of <literal>c1</literal>
4456       and <literal>c2</literal> are the same.  In general, the
4457       types <literal>t1</literal> and <literal>t2</literal> of an equality
4458       constraint may be arbitrary monotypes; i.e., they may not contain any
4459       quantifiers, independent of whether higher-rank types are otherwise
4460       enabled. 
4461     </para>
4462     <para>
4463       Equality constraints can also appear in class and instance contexts.
4464       The former enable a simple translation of programs using functional
4465       dependencies into programs using family synonyms instead.  The general
4466       idea is to rewrite a class declaration of the form 
4467 <programlisting>
4468 class C a b | a -> b
4469 </programlisting>
4470       to
4471 <programlisting>
4472 class (F a ~ b) => C a b where
4473   type F a
4474 </programlisting>
4475       That is, we represent every functional dependency (FD) <literal>a1 .. an
4476       -> b</literal> by an FD type family <literal>F a1 .. an</literal> and a
4477       superclass context equality <literal>F a1 .. an ~ b</literal>,
4478       essentially giving a name to the functional dependency.  In class
4479       instances, we define the type instances of FD families in accordance
4480       with the class head.  Method signatures are not affected by that
4481       process. 
4482     </para>
4483     <para>
4484       NB: Equalities in superclass contexts are not fully implemented in
4485       GHC 6.10. 
4486     </para>
4487   </sect3>
4488
4489   <sect3 id-="ty-fams-in-instances">
4490     <title>Type families and instance declarations</title>
4491     <para>Type families require us to extend the rules for 
4492       the form of instance heads, which are given 
4493       in <xref linkend="flexible-instance-head"/>.
4494       Specifically:
4495 <itemizedlist>
4496  <listitem><para>Data type families may appear in an instance head</para></listitem>
4497  <listitem><para>Type synonym families may not appear (at all) in an instance head</para></listitem>
4498 </itemizedlist>
4499 The reason for the latter restriction is that there is no way to check for. Consider
4500 <programlisting>
4501    type family F a
4502    type instance F Bool = Int
4503
4504    class C a
4505
4506    instance C Int
4507    instance C (F a)
4508 </programlisting>
4509 Now a constraint <literal>(C (F Bool))</literal> would match both instances.
4510 The situation is especially bad because the type instance for <literal>F Bool</literal>
4511 might be in another module, or even in a module that is not yet written.
4512 </para>
4513 </sect3>
4514 </sect2>
4515
4516 </sect1>
4517
4518 <sect1 id="other-type-extensions">
4519 <title>Other type system extensions</title>
4520
4521 <sect2 id="type-restrictions">
4522 <title>Type signatures</title>
4523
4524 <sect3 id="flexible-contexts"><title>The context of a type signature</title>
4525 <para>
4526 The <option>-XFlexibleContexts</option> flag lifts the Haskell 98 restriction
4527 that the type-class constraints in a type signature must have the 
4528 form <emphasis>(class type-variable)</emphasis> or
4529 <emphasis>(class (type-variable type-variable ...))</emphasis>. 
4530 With <option>-XFlexibleContexts</option>
4531 these type signatures are perfectly OK
4532 <programlisting>
4533   g :: Eq [a] => ...
4534   g :: Ord (T a ()) => ...
4535 </programlisting>
4536 </para>
4537 <para>
4538 GHC imposes the following restrictions on the constraints in a type signature.
4539 Consider the type:
4540
4541 <programlisting>
4542   forall tv1..tvn (c1, ...,cn) => type
4543 </programlisting>
4544
4545 (Here, we write the "foralls" explicitly, although the Haskell source
4546 language omits them; in Haskell 98, all the free type variables of an
4547 explicit source-language type signature are universally quantified,
4548 except for the class type variables in a class declaration.  However,
4549 in GHC, you can give the foralls if you want.  See <xref linkend="universal-quantification"/>).
4550 </para>
4551
4552 <para>
4553
4554 <orderedlist>
4555 <listitem>
4556
4557 <para>
4558  <emphasis>Each universally quantified type variable
4559 <literal>tvi</literal> must be reachable from <literal>type</literal></emphasis>.
4560
4561 A type variable <literal>a</literal> is "reachable" if it appears
4562 in the same constraint as either a type variable free in
4563 <literal>type</literal>, or another reachable type variable.  
4564 A value with a type that does not obey 
4565 this reachability restriction cannot be used without introducing
4566 ambiguity; that is why the type is rejected.
4567 Here, for example, is an illegal type:
4568
4569
4570 <programlisting>
4571   forall a. Eq a => Int
4572 </programlisting>
4573
4574
4575 When a value with this type was used, the constraint <literal>Eq tv</literal>
4576 would be introduced where <literal>tv</literal> is a fresh type variable, and
4577 (in the dictionary-translation implementation) the value would be
4578 applied to a dictionary for <literal>Eq tv</literal>.  The difficulty is that we
4579 can never know which instance of <literal>Eq</literal> to use because we never
4580 get any more information about <literal>tv</literal>.
4581 </para>
4582 <para>
4583 Note
4584 that the reachability condition is weaker than saying that <literal>a</literal> is
4585 functionally dependent on a type variable free in
4586 <literal>type</literal> (see <xref
4587 linkend="functional-dependencies"/>).  The reason for this is there
4588 might be a "hidden" dependency, in a superclass perhaps.  So
4589 "reachable" is a conservative approximation to "functionally dependent".
4590 For example, consider:
4591 <programlisting>
4592   class C a b | a -> b where ...
4593   class C a b => D a b where ...
4594   f :: forall a b. D a b => a -> a
4595 </programlisting>
4596 This is fine, because in fact <literal>a</literal> does functionally determine <literal>b</literal>
4597 but that is not immediately apparent from <literal>f</literal>'s type.
4598 </para>
4599 </listitem>
4600 <listitem>
4601
4602 <para>
4603  <emphasis>Every constraint <literal>ci</literal> must mention at least one of the
4604 universally quantified type variables <literal>tvi</literal></emphasis>.
4605
4606 For example, this type is OK because <literal>C a b</literal> mentions the
4607 universally quantified type variable <literal>b</literal>:
4608
4609
4610 <programlisting>
4611   forall a. C a b => burble
4612 </programlisting>
4613
4614
4615 The next type is illegal because the constraint <literal>Eq b</literal> does not
4616 mention <literal>a</literal>:
4617
4618
4619 <programlisting>
4620   forall a. Eq b => burble
4621 </programlisting>
4622
4623
4624 The reason for this restriction is milder than the other one.  The
4625 excluded types are never useful or necessary (because the offending
4626 context doesn't need to be witnessed at this point; it can be floated
4627 out).  Furthermore, floating them out increases sharing. Lastly,
4628 excluding them is a conservative choice; it leaves a patch of
4629 territory free in case we need it later.
4630
4631 </para>
4632 </listitem>
4633
4634 </orderedlist>
4635
4636 </para>
4637 </sect3>
4638
4639
4640
4641 </sect2>
4642
4643 <sect2 id="implicit-parameters">
4644 <title>Implicit parameters</title>
4645
4646 <para> Implicit parameters are implemented as described in 
4647 "Implicit parameters: dynamic scoping with static types", 
4648 J Lewis, MB Shields, E Meijer, J Launchbury,
4649 27th ACM Symposium on Principles of Programming Languages (POPL'00),
4650 Boston, Jan 2000.
4651 </para>
4652
4653 <para>(Most of the following, still rather incomplete, documentation is
4654 due to Jeff Lewis.)</para>
4655
4656 <para>Implicit parameter support is enabled with the option
4657 <option>-XImplicitParams</option>.</para>
4658
4659 <para>
4660 A variable is called <emphasis>dynamically bound</emphasis> when it is bound by the calling
4661 context of a function and <emphasis>statically bound</emphasis> when bound by the callee's
4662 context. In Haskell, all variables are statically bound. Dynamic
4663 binding of variables is a notion that goes back to Lisp, but was later
4664 discarded in more modern incarnations, such as Scheme. Dynamic binding
4665 can be very confusing in an untyped language, and unfortunately, typed
4666 languages, in particular Hindley-Milner typed languages like Haskell,
4667 only support static scoping of variables.
4668 </para>
4669 <para>
4670 However, by a simple extension to the type class system of Haskell, we
4671 can support dynamic binding. Basically, we express the use of a
4672 dynamically bound variable as a constraint on the type. These
4673 constraints lead to types of the form <literal>(?x::t') => t</literal>, which says "this
4674 function uses a dynamically-bound variable <literal>?x</literal> 
4675 of type <literal>t'</literal>". For
4676 example, the following expresses the type of a sort function,
4677 implicitly parameterized by a comparison function named <literal>cmp</literal>.
4678 <programlisting>
4679   sort :: (?cmp :: a -> a -> Bool) => [a] -> [a]
4680 </programlisting>
4681 The dynamic binding constraints are just a new form of predicate in the type class system.
4682 </para>
4683 <para>
4684 An implicit parameter occurs in an expression using the special form <literal>?x</literal>, 
4685 where <literal>x</literal> is
4686 any valid identifier (e.g. <literal>ord ?x</literal> is a valid expression). 
4687 Use of this construct also introduces a new
4688 dynamic-binding constraint in the type of the expression. 
4689 For example, the following definition
4690 shows how we can define an implicitly parameterized sort function in
4691 terms of an explicitly parameterized <literal>sortBy</literal> function:
4692 <programlisting>
4693   sortBy :: (a -> a -> Bool) -> [a] -> [a]
4694
4695   sort   :: (?cmp :: a -> a -> Bool) => [a] -> [a]
4696   sort    = sortBy ?cmp
4697 </programlisting>
4698 </para>
4699
4700 <sect3>
4701 <title>Implicit-parameter type constraints</title>
4702 <para>
4703 Dynamic binding constraints behave just like other type class
4704 constraints in that they are automatically propagated. Thus, when a
4705 function is used, its implicit parameters are inherited by the
4706 function that called it. For example, our <literal>sort</literal> function might be used
4707 to pick out the least value in a list:
4708 <programlisting>
4709   least   :: (?cmp :: a -> a -> Bool) => [a] -> a
4710   least xs = head (sort xs)
4711 </programlisting>
4712 Without lifting a finger, the <literal>?cmp</literal> parameter is
4713 propagated to become a parameter of <literal>least</literal> as well. With explicit
4714 parameters, the default is that parameters must always be explicit
4715 propagated. With implicit parameters, the default is to always
4716 propagate them.
4717 </para>
4718 <para>
4719 An implicit-parameter type constraint differs from other type class constraints in the
4720 following way: All uses of a particular implicit parameter must have
4721 the same type. This means that the type of <literal>(?x, ?x)</literal> 
4722 is <literal>(?x::a) => (a,a)</literal>, and not 
4723 <literal>(?x::a, ?x::b) => (a, b)</literal>, as would be the case for type
4724 class constraints.
4725 </para>
4726
4727 <para> You can't have an implicit parameter in the context of a class or instance
4728 declaration.  For example, both these declarations are illegal:
4729 <programlisting>
4730   class (?x::Int) => C a where ...
4731   instance (?x::a) => Foo [a] where ...
4732 </programlisting>
4733 Reason: exactly which implicit parameter you pick up depends on exactly where
4734 you invoke a function. But the ``invocation'' of instance declarations is done
4735 behind the scenes by the compiler, so it's hard to figure out exactly where it is done.
4736 Easiest thing is to outlaw the offending types.</para>
4737 <para>
4738 Implicit-parameter constraints do not cause ambiguity.  For example, consider:
4739 <programlisting>
4740    f :: (?x :: [a]) => Int -> Int
4741    f n = n + length ?x
4742
4743    g :: (Read a, Show a) => String -> String
4744    g s = show (read s)
4745 </programlisting>
4746 Here, <literal>g</literal> has an ambiguous type, and is rejected, but <literal>f</literal>
4747 is fine.  The binding for <literal>?x</literal> at <literal>f</literal>'s call site is 
4748 quite unambiguous, and fixes the type <literal>a</literal>.
4749 </para>
4750 </sect3>
4751
4752 <sect3>
4753 <title>Implicit-parameter bindings</title>
4754
4755 <para>
4756 An implicit parameter is <emphasis>bound</emphasis> using the standard
4757 <literal>let</literal> or <literal>where</literal> binding forms.
4758 For example, we define the <literal>min</literal> function by binding
4759 <literal>cmp</literal>.
4760 <programlisting>
4761   min :: [a] -> a
4762   min  = let ?cmp = (&lt;=) in least
4763 </programlisting>
4764 </para>
4765 <para>
4766 A group of implicit-parameter bindings may occur anywhere a normal group of Haskell
4767 bindings can occur, except at top level.  That is, they can occur in a <literal>let</literal> 
4768 (including in a list comprehension, or do-notation, or pattern guards), 
4769 or a <literal>where</literal> clause.
4770 Note the following points:
4771 <itemizedlist>
4772 <listitem><para>
4773 An implicit-parameter binding group must be a
4774 collection of simple bindings to implicit-style variables (no
4775 function-style bindings, and no type signatures); these bindings are
4776 neither polymorphic or recursive.  
4777 </para></listitem>
4778 <listitem><para>
4779 You may not mix implicit-parameter bindings with ordinary bindings in a 
4780 single <literal>let</literal>
4781 expression; use two nested <literal>let</literal>s instead.
4782 (In the case of <literal>where</literal> you are stuck, since you can't nest <literal>where</literal> clauses.)
4783 </para></listitem>
4784
4785 <listitem><para>
4786 You may put multiple implicit-parameter bindings in a
4787 single binding group; but they are <emphasis>not</emphasis> treated
4788 as a mutually recursive group (as ordinary <literal>let</literal> bindings are).
4789 Instead they are treated as a non-recursive group, simultaneously binding all the implicit
4790 parameter.  The bindings are not nested, and may be re-ordered without changing
4791 the meaning of the program.
4792 For example, consider:
4793 <programlisting>
4794   f t = let { ?x = t; ?y = ?x+(1::Int) } in ?x + ?y
4795 </programlisting>
4796 The use of <literal>?x</literal> in the binding for <literal>?y</literal> does not "see"
4797 the binding for <literal>?x</literal>, so the type of <literal>f</literal> is
4798 <programlisting>
4799   f :: (?x::Int) => Int -> Int
4800 </programlisting>
4801 </para></listitem>
4802 </itemizedlist>
4803 </para>
4804
4805 </sect3>
4806
4807 <sect3><title>Implicit parameters and polymorphic recursion</title>
4808
4809 <para>
4810 Consider these two definitions:
4811 <programlisting>
4812   len1 :: [a] -> Int
4813   len1 xs = let ?acc = 0 in len_acc1 xs
4814
4815   len_acc1 [] = ?acc
4816   len_acc1 (x:xs) = let ?acc = ?acc + (1::Int) in len_acc1 xs
4817
4818   ------------
4819
4820   len2 :: [a] -> Int
4821   len2 xs = let ?acc = 0 in len_acc2 xs
4822
4823   len_acc2 :: (?acc :: Int) => [a] -> Int
4824   len_acc2 [] = ?acc
4825   len_acc2 (x:xs) = let ?acc = ?acc + (1::Int) in len_acc2 xs
4826 </programlisting>
4827 The only difference between the two groups is that in the second group
4828 <literal>len_acc</literal> is given a type signature.
4829 In the former case, <literal>len_acc1</literal> is monomorphic in its own
4830 right-hand side, so the implicit parameter <literal>?acc</literal> is not
4831 passed to the recursive call.  In the latter case, because <literal>len_acc2</literal>
4832 has a type signature, the recursive call is made to the
4833 <emphasis>polymorphic</emphasis> version, which takes <literal>?acc</literal>
4834 as an implicit parameter.  So we get the following results in GHCi:
4835 <programlisting>
4836   Prog> len1 "hello"
4837   0
4838   Prog> len2 "hello"
4839   5
4840 </programlisting>
4841 Adding a type signature dramatically changes the result!  This is a rather
4842 counter-intuitive phenomenon, worth watching out for.
4843 </para>
4844 </sect3>
4845
4846 <sect3><title>Implicit parameters and monomorphism</title>
4847
4848 <para>GHC applies the dreaded Monomorphism Restriction (section 4.5.5 of the
4849 Haskell Report) to implicit parameters.  For example, consider:
4850 <programlisting>
4851  f :: Int -> Int
4852   f v = let ?x = 0     in
4853         let y = ?x + v in
4854         let ?x = 5     in
4855         y
4856 </programlisting>
4857 Since the binding for <literal>y</literal> falls under the Monomorphism
4858 Restriction it is not generalised, so the type of <literal>y</literal> is
4859 simply <literal>Int</literal>, not <literal>(?x::Int) => Int</literal>.
4860 Hence, <literal>(f 9)</literal> returns result <literal>9</literal>.
4861 If you add a type signature for <literal>y</literal>, then <literal>y</literal>
4862 will get type <literal>(?x::Int) => Int</literal>, so the occurrence of
4863 <literal>y</literal> in the body of the <literal>let</literal> will see the
4864 inner binding of <literal>?x</literal>, so <literal>(f 9)</literal> will return
4865 <literal>14</literal>.
4866 </para>
4867 </sect3>
4868 </sect2>
4869
4870     <!--   ======================= COMMENTED OUT ========================
4871
4872     We intend to remove linear implicit parameters, so I'm at least removing
4873     them from the 6.6 user manual
4874
4875 <sect2 id="linear-implicit-parameters">
4876 <title>Linear implicit parameters</title>
4877 <para>
4878 Linear implicit parameters are an idea developed by Koen Claessen,
4879 Mark Shields, and Simon PJ.  They address the long-standing
4880 problem that monads seem over-kill for certain sorts of problem, notably:
4881 </para>
4882 <itemizedlist>
4883 <listitem> <para> distributing a supply of unique names </para> </listitem>
4884 <listitem> <para> distributing a supply of random numbers </para> </listitem>
4885 <listitem> <para> distributing an oracle (as in QuickCheck) </para> </listitem>
4886 </itemizedlist>
4887
4888 <para>
4889 Linear implicit parameters are just like ordinary implicit parameters,
4890 except that they are "linear"; that is, they cannot be copied, and
4891 must be explicitly "split" instead.  Linear implicit parameters are
4892 written '<literal>%x</literal>' instead of '<literal>?x</literal>'.  
4893 (The '/' in the '%' suggests the split!)
4894 </para>
4895 <para>
4896 For example:
4897 <programlisting>
4898     import GHC.Exts( Splittable )
4899
4900     data NameSupply = ...
4901     
4902     splitNS :: NameSupply -> (NameSupply, NameSupply)
4903     newName :: NameSupply -> Name
4904
4905     instance Splittable NameSupply where
4906         split = splitNS
4907
4908
4909     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
4910     f env (Lam x e) = Lam x' (f env e)
4911                     where
4912                       x'   = newName %ns
4913                       env' = extend env x x'
4914     ...more equations for f...
4915 </programlisting>
4916 Notice that the implicit parameter %ns is consumed 
4917 <itemizedlist>
4918 <listitem> <para> once by the call to <literal>newName</literal> </para> </listitem>
4919 <listitem> <para> once by the recursive call to <literal>f</literal> </para></listitem>
4920 </itemizedlist>
4921 </para>
4922 <para>
4923 So the translation done by the type checker makes
4924 the parameter explicit:
4925 <programlisting>
4926     f :: NameSupply -> Env -> Expr -> Expr
4927     f ns env (Lam x e) = Lam x' (f ns1 env e)
4928                        where
4929                          (ns1,ns2) = splitNS ns
4930                          x' = newName ns2
4931                          env = extend env x x'
4932 </programlisting>
4933 Notice the call to 'split' introduced by the type checker.
4934 How did it know to use 'splitNS'?  Because what it really did
4935 was to introduce a call to the overloaded function 'split',
4936 defined by the class <literal>Splittable</literal>:
4937 <programlisting>
4938         class Splittable a where
4939           split :: a -> (a,a)
4940 </programlisting>
4941 The instance for <literal>Splittable NameSupply</literal> tells GHC how to implement
4942 split for name supplies.  But we can simply write
4943 <programlisting>
4944         g x = (x, %ns, %ns)
4945 </programlisting>
4946 and GHC will infer
4947 <programlisting>
4948         g :: (Splittable a, %ns :: a) => b -> (b,a,a)
4949 </programlisting>
4950 The <literal>Splittable</literal> class is built into GHC.  It's exported by module 
4951 <literal>GHC.Exts</literal>.
4952 </para>
4953 <para>
4954 Other points:
4955 <itemizedlist>
4956 <listitem> <para> '<literal>?x</literal>' and '<literal>%x</literal>' 
4957 are entirely distinct implicit parameters: you 
4958   can use them together and they won't interfere with each other. </para>
4959 </listitem>
4960
4961 <listitem> <para> You can bind linear implicit parameters in 'with' clauses. </para> </listitem>
4962
4963 <listitem> <para>You cannot have implicit parameters (whether linear or not)
4964   in the context of a class or instance declaration. </para></listitem>
4965 </itemizedlist>
4966 </para>
4967
4968 <sect3><title>Warnings</title>
4969
4970 <para>
4971 The monomorphism restriction is even more important than usual.
4972 Consider the example above:
4973 <programlisting>
4974     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
4975     f env (Lam x e) = Lam x' (f env e)
4976                     where
4977                       x'   = newName %ns
4978                       env' = extend env x x'
4979 </programlisting>
4980 If we replaced the two occurrences of x' by (newName %ns), which is
4981 usually a harmless thing to do, we get:
4982 <programlisting>
4983     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
4984     f env (Lam x e) = Lam (newName %ns) (f env e)
4985                     where
4986                       env' = extend env x (newName %ns)
4987 </programlisting>
4988 But now the name supply is consumed in <emphasis>three</emphasis> places
4989 (the two calls to newName,and the recursive call to f), so
4990 the result is utterly different.  Urk!  We don't even have 
4991 the beta rule.
4992 </para>
4993 <para>
4994 Well, this is an experimental change.  With implicit
4995 parameters we have already lost beta reduction anyway, and
4996 (as John Launchbury puts it) we can't sensibly reason about
4997 Haskell programs without knowing their typing.
4998 </para>
4999
5000 </sect3>
5001
5002 <sect3><title>Recursive functions</title>
5003 <para>Linear implicit parameters can be particularly tricky when you have a recursive function
5004 Consider
5005 <programlisting>
5006         foo :: %x::T => Int -> [Int]
5007         foo 0 = []
5008         foo n = %x : foo (n-1)
5009 </programlisting>
5010 where T is some type in class Splittable.</para>
5011 <para>
5012 Do you get a list of all the same T's or all different T's
5013 (assuming that split gives two distinct T's back)?
5014 </para><para>
5015 If you supply the type signature, taking advantage of polymorphic
5016 recursion, you get what you'd probably expect.  Here's the
5017 translated term, where the implicit param is made explicit:
5018 <programlisting>
5019         foo x 0 = []
5020         foo x n = let (x1,x2) = split x
5021                   in x1 : foo x2 (n-1)
5022 </programlisting>
5023 But if you don't supply a type signature, GHC uses the Hindley
5024 Milner trick of using a single monomorphic instance of the function
5025 for the recursive calls. That is what makes Hindley Milner type inference
5026 work.  So the translation becomes
5027 <programlisting>
5028         foo x = let
5029                   foom 0 = []
5030                   foom n = x : foom (n-1)
5031                 in
5032                 foom
5033 </programlisting>
5034 Result: 'x' is not split, and you get a list of identical T's.  So the
5035 semantics of the program depends on whether or not foo has a type signature.
5036 Yikes!
5037 </para><para>
5038 You may say that this is a good reason to dislike linear implicit parameters
5039 and you'd be right.  That is why they are an experimental feature. 
5040 </para>
5041 </sect3>
5042
5043 </sect2>
5044
5045 ================ END OF Linear Implicit Parameters commented out -->
5046
5047 <sect2 id="kinding">
5048 <title>Explicitly-kinded quantification</title>
5049
5050 <para>
5051 Haskell infers the kind of each type variable.  Sometimes it is nice to be able
5052 to give the kind explicitly as (machine-checked) documentation, 
5053 just as it is nice to give a type signature for a function.  On some occasions,
5054 it is essential to do so.  For example, in his paper "Restricted Data Types in Haskell" (Haskell Workshop 1999)
5055 John Hughes had to define the data type:
5056 <screen>
5057      data Set cxt a = Set [a]
5058                     | Unused (cxt a -> ())
5059 </screen>
5060 The only use for the <literal>Unused</literal> constructor was to force the correct
5061 kind for the type variable <literal>cxt</literal>.
5062 </para>
5063 <para>
5064 GHC now instead allows you to specify the kind of a type variable directly, wherever
5065 a type variable is explicitly bound, with the flag <option>-XKindSignatures</option>.
5066 </para>
5067 <para>
5068 This flag enables kind signatures in the following places:
5069 <itemizedlist>
5070 <listitem><para><literal>data</literal> declarations:
5071 <screen>
5072   data Set (cxt :: * -> *) a = Set [a]
5073 </screen></para></listitem>
5074 <listitem><para><literal>type</literal> declarations:
5075 <screen>
5076   type T (f :: * -> *) = f Int
5077 </screen></para></listitem>
5078 <listitem><para><literal>class</literal> declarations:
5079 <screen>
5080   class (Eq a) => C (f :: * -> *) a where ...
5081 </screen></para></listitem>
5082 <listitem><para><literal>forall</literal>'s in type signatures:
5083 <screen>
5084   f :: forall (cxt :: * -> *). Set cxt Int
5085 </screen></para></listitem>
5086 </itemizedlist>
5087 </para>
5088
5089 <para>
5090 The parentheses are required.  Some of the spaces are required too, to
5091 separate the lexemes.  If you write <literal>(f::*->*)</literal> you
5092 will get a parse error, because "<literal>::*->*</literal>" is a
5093 single lexeme in Haskell.
5094 </para>
5095
5096 <para>
5097 As part of the same extension, you can put kind annotations in types
5098 as well.  Thus:
5099 <screen>
5100    f :: (Int :: *) -> Int
5101    g :: forall a. a -> (a :: *)
5102 </screen>
5103 The syntax is
5104 <screen>
5105    atype ::= '(' ctype '::' kind ')
5106 </screen>
5107 The parentheses are required.
5108 </para>
5109 </sect2>
5110
5111
5112 <sect2 id="universal-quantification">
5113 <title>Arbitrary-rank polymorphism
5114 </title>
5115
5116 <para>
5117 Haskell type signatures are implicitly quantified.  The new keyword <literal>forall</literal>
5118 allows us to say exactly what this means.  For example:
5119 </para>
5120 <para>
5121 <programlisting>
5122         g :: b -> b
5123 </programlisting>
5124 means this:
5125 <programlisting>
5126         g :: forall b. (b -> b)
5127 </programlisting>
5128 The two are treated identically.
5129 </para>
5130
5131 <para>
5132 However, GHC's type system supports <emphasis>arbitrary-rank</emphasis> 
5133 explicit universal quantification in
5134 types. 
5135 For example, all the following types are legal:
5136 <programlisting>
5137     f1 :: forall a b. a -> b -> a
5138     g1 :: forall a b. (Ord a, Eq  b) => a -> b -> a
5139
5140     f2 :: (forall a. a->a) -> Int -> Int
5141     g2 :: (forall a. Eq a => [a] -> a -> Bool) -> Int -> Int
5142
5143     f3 :: ((forall a. a->a) -> Int) -> Bool -> Bool
5144
5145     f4 :: Int -> (forall a. a -> a)
5146 </programlisting>
5147 Here, <literal>f1</literal> and <literal>g1</literal> are rank-1 types, and
5148 can be written in standard Haskell (e.g. <literal>f1 :: a->b->a</literal>).
5149 The <literal>forall</literal> makes explicit the universal quantification that
5150 is implicitly added by Haskell.
5151 </para>
5152 <para>
5153 The functions <literal>f2</literal> and <literal>g2</literal> have rank-2 types;
5154 the <literal>forall</literal> is on the left of a function arrow.  As <literal>g2</literal>
5155 shows, the polymorphic type on the left of the function arrow can be overloaded.
5156 </para>
5157 <para>
5158 The function <literal>f3</literal> has a rank-3 type;
5159 it has rank-2 types on the left of a function arrow.
5160 </para>
5161 <para>
5162 GHC has three flags to control higher-rank types:
5163 <itemizedlist>
5164 <listitem><para>
5165  <option>-XPolymorphicComponents</option>: data constructors (only) can have polymorphic argument types.
5166 </para></listitem>
5167 <listitem><para>
5168  <option>-XRank2Types</option>: any function (including data constructors) can have a rank-2 type.
5169 </para></listitem>
5170 <listitem><para>
5171  <option>-XRankNTypes</option>: any function (including data constructors) can have an arbitrary-rank type.
5172 That is,  you can nest <literal>forall</literal>s
5173 arbitrarily deep in function arrows.
5174 In particular, a forall-type (also called a "type scheme"),
5175 including an operational type class context, is legal:
5176 <itemizedlist>
5177 <listitem> <para> On the left or right (see <literal>f4</literal>, for example)
5178 of a function arrow </para> </listitem>
5179 <listitem> <para> As the argument of a constructor, or type of a field, in a data type declaration. For
5180 example, any of the <literal>f1,f2,f3,g1,g2</literal> above would be valid
5181 field type signatures.</para> </listitem>
5182 <listitem> <para> As the type of an implicit parameter </para> </listitem>
5183 <listitem> <para> In a pattern type signature (see <xref linkend="scoped-type-variables"/>) </para> </listitem>
5184 </itemizedlist>
5185 </para></listitem>
5186 </itemizedlist>
5187 Of course <literal>forall</literal> becomes a keyword; you can't use <literal>forall</literal> as
5188 a type variable any more!
5189 </para>
5190
5191
5192 <sect3 id="univ">
5193 <title>Examples
5194 </title>
5195
5196 <para>
5197 In a <literal>data</literal> or <literal>newtype</literal> declaration one can quantify
5198 the types of the constructor arguments.  Here are several examples:
5199 </para>
5200
5201 <para>
5202
5203 <programlisting>
5204 data T a = T1 (forall b. b -> b -> b) a
5205
5206 data MonadT m = MkMonad { return :: forall a. a -> m a,
5207                           bind   :: forall a b. m a -> (a -> m b) -> m b
5208                         }
5209
5210 newtype Swizzle = MkSwizzle (Ord a => [a] -> [a])
5211 </programlisting>
5212
5213 </para>
5214
5215 <para>
5216 The constructors have rank-2 types:
5217 </para>
5218
5219 <para>
5220
5221 <programlisting>
5222 T1 :: forall a. (forall b. b -> b -> b) -> a -> T a
5223 MkMonad :: forall m. (forall a. a -> m a)
5224                   -> (forall a b. m a -> (a -> m b) -> m b)
5225                   -> MonadT m
5226 MkSwizzle :: (Ord a => [a] -> [a]) -> Swizzle
5227 </programlisting>
5228
5229 </para>
5230
5231 <para>
5232 Notice that you don't need to use a <literal>forall</literal> if there's an
5233 explicit context.  For example in the first argument of the
5234 constructor <function>MkSwizzle</function>, an implicit "<literal>forall a.</literal>" is
5235 prefixed to the argument type.  The implicit <literal>forall</literal>
5236 quantifies all type variables that are not already in scope, and are
5237 mentioned in the type quantified over.
5238 </para>
5239
5240 <para>
5241 As for type signatures, implicit quantification happens for non-overloaded
5242 types too.  So if you write this:
5243
5244 <programlisting>
5245   data T a = MkT (Either a b) (b -> b)
5246 </programlisting>
5247
5248 it's just as if you had written this:
5249
5250 <programlisting>
5251   data T a = MkT (forall b. Either a b) (forall b. b -> b)
5252 </programlisting>
5253
5254 That is, since the type variable <literal>b</literal> isn't in scope, it's
5255 implicitly universally quantified.  (Arguably, it would be better
5256 to <emphasis>require</emphasis> explicit quantification on constructor arguments
5257 where that is what is wanted.  Feedback welcomed.)
5258 </para>
5259
5260 <para>
5261 You construct values of types <literal>T1, MonadT, Swizzle</literal> by applying
5262 the constructor to suitable values, just as usual.  For example,
5263 </para>
5264
5265 <para>
5266
5267 <programlisting>
5268     a1 :: T Int
5269     a1 = T1 (\xy->x) 3
5270     
5271     a2, a3 :: Swizzle
5272     a2 = MkSwizzle sort
5273     a3 = MkSwizzle reverse
5274     
5275     a4 :: MonadT Maybe
5276     a4 = let r x = Just x
5277              b m k = case m of
5278                        Just y -> k y
5279                        Nothing -> Nothing
5280          in
5281          MkMonad r b
5282
5283     mkTs :: (forall b. b -> b -> b) -> a -> [T a]
5284     mkTs f x y = [T1 f x, T1 f y]
5285 </programlisting>
5286
5287 </para>
5288
5289 <para>
5290 The type of the argument can, as usual, be more general than the type
5291 required, as <literal>(MkSwizzle reverse)</literal> shows.  (<function>reverse</function>
5292 does not need the <literal>Ord</literal> constraint.)
5293 </para>
5294
5295 <para>
5296 When you use pattern matching, the bound variables may now have
5297 polymorphic types.  For example:
5298 </para>
5299
5300 <para>
5301
5302 <programlisting>
5303     f :: T a -> a -> (a, Char)
5304     f (T1 w k) x = (w k x, w 'c' 'd')
5305
5306     g :: (Ord a, Ord b) => Swizzle -> [a] -> (a -> b) -> [b]
5307     g (MkSwizzle s) xs f = s (map f (s xs))
5308
5309     h :: MonadT m -> [m a] -> m [a]
5310     h m [] = return m []
5311     h m (x:xs) = bind m x          $ \y ->
5312                  bind m (h m xs)   $ \ys ->
5313                  return m (y:ys)
5314 </programlisting>
5315
5316 </para>
5317
5318 <para>
5319 In the function <function>h</function> we use the record selectors <literal>return</literal>
5320 and <literal>bind</literal> to extract the polymorphic bind and return functions
5321 from the <literal>MonadT</literal> data structure, rather than using pattern
5322 matching.
5323 </para>
5324 </sect3>
5325
5326 <sect3>
5327 <title>Type inference</title>
5328
5329 <para>
5330 In general, type inference for arbitrary-rank types is undecidable.
5331 GHC uses an algorithm proposed by Odersky and Laufer ("Putting type annotations to work", POPL'96)
5332 to get a decidable algorithm by requiring some help from the programmer.
5333 We do not yet have a formal specification of "some help" but the rule is this:
5334 </para>
5335 <para>
5336 <emphasis>For a lambda-bound or case-bound variable, x, either the programmer
5337 provides an explicit polymorphic type for x, or GHC's type inference will assume
5338 that x's type has no foralls in it</emphasis>.
5339 </para>
5340 <para>
5341 What does it mean to "provide" an explicit type for x?  You can do that by 
5342 giving a type signature for x directly, using a pattern type signature
5343 (<xref linkend="scoped-type-variables"/>), thus:
5344 <programlisting>
5345      \ f :: (forall a. a->a) -> (f True, f 'c')
5346 </programlisting>
5347 Alternatively, you can give a type signature to the enclosing
5348 context, which GHC can "push down" to find the type for the variable:
5349 <programlisting>
5350      (\ f -> (f True, f 'c')) :: (forall a. a->a) -> (Bool,Char)
5351 </programlisting>
5352 Here the type signature on the expression can be pushed inwards
5353 to give a type signature for f.  Similarly, and more commonly,
5354 one can give a type signature for the function itself:
5355 <programlisting>
5356      h :: (forall a. a->a) -> (Bool,Char)
5357      h f = (f True, f 'c')
5358 </programlisting>
5359 You don't need to give a type signature if the lambda bound variable
5360 is a constructor argument.  Here is an example we saw earlier:
5361 <programlisting>
5362     f :: T a -> a -> (a, Char)
5363     f (T1 w k) x = (w k x, w 'c' 'd')
5364 </programlisting>
5365 Here we do not need to give a type signature to <literal>w</literal>, because
5366 it is an argument of constructor <literal>T1</literal> and that tells GHC all
5367 it needs to know.
5368 </para>
5369
5370 </sect3>
5371
5372
5373 <sect3 id="implicit-quant">
5374 <title>Implicit quantification</title>
5375
5376 <para>
5377 GHC performs implicit quantification as follows.  <emphasis>At the top level (only) of 
5378 user-written types, if and only if there is no explicit <literal>forall</literal>,
5379 GHC finds all the type variables mentioned in the type that are not already
5380 in scope, and universally quantifies them.</emphasis>  For example, the following pairs are 
5381 equivalent:
5382 <programlisting>
5383   f :: a -> a
5384   f :: forall a. a -> a
5385
5386   g (x::a) = let
5387                 h :: a -> b -> b
5388                 h x y = y
5389              in ...
5390   g (x::a) = let
5391                 h :: forall b. a -> b -> b
5392                 h x y = y
5393              in ...
5394 </programlisting>
5395 </para>
5396 <para>
5397 Notice that GHC does <emphasis>not</emphasis> find the innermost possible quantification
5398 point.  For example:
5399 <programlisting>
5400   f :: (a -> a) -> Int
5401            -- MEANS
5402   f :: forall a. (a -> a) -> Int
5403            -- NOT
5404   f :: (forall a. a -> a) -> Int
5405
5406
5407   g :: (Ord a => a -> a) -> Int
5408            -- MEANS the illegal type
5409   g :: forall a. (Ord a => a -> a) -> Int
5410            -- NOT
5411   g :: (forall a. Ord a => a -> a) -> Int
5412 </programlisting>
5413 The latter produces an illegal type, which you might think is silly,
5414 but at least the rule is simple.  If you want the latter type, you
5415 can write your for-alls explicitly.  Indeed, doing so is strongly advised
5416 for rank-2 types.
5417 </para>
5418 </sect3>
5419 </sect2>
5420
5421
5422 <sect2 id="impredicative-polymorphism">
5423 <title>Impredicative polymorphism
5424 </title>
5425 <para>GHC supports <emphasis>impredicative polymorphism</emphasis>, 
5426 enabled with <option>-XImpredicativeTypes</option>.  
5427 This means
5428 that you can call a polymorphic function at a polymorphic type, and
5429 parameterise data structures over polymorphic types.  For example:
5430 <programlisting>
5431   f :: Maybe (forall a. [a] -> [a]) -> Maybe ([Int], [Char])
5432   f (Just g) = Just (g [3], g "hello")
5433   f Nothing  = Nothing
5434 </programlisting>
5435 Notice here that the <literal>Maybe</literal> type is parameterised by the
5436 <emphasis>polymorphic</emphasis> type <literal>(forall a. [a] ->
5437 [a])</literal>.
5438 </para>
5439 <para>The technical details of this extension are described in the paper
5440 <ulink url="http://research.microsoft.com/%7Esimonpj/papers/boxy/">Boxy types:
5441 type inference for higher-rank types and impredicativity</ulink>,
5442 which appeared at ICFP 2006.  
5443 </para>
5444 </sect2>
5445
5446 <sect2 id="scoped-type-variables">
5447 <title>Lexically scoped type variables
5448 </title>
5449
5450 <para>
5451 GHC supports <emphasis>lexically scoped type variables</emphasis>, without
5452 which some type signatures are simply impossible to write. For example:
5453 <programlisting>
5454 f :: forall a. [a] -> [a]
5455 f xs = ys ++ ys
5456      where
5457        ys :: [a]
5458        ys = reverse xs
5459 </programlisting>
5460 The type signature for <literal>f</literal> brings the type variable <literal>a</literal> into scope,
5461 because of the explicit <literal>forall</literal> (<xref linkend="decl-type-sigs"/>).
5462 The type variables bound by a <literal>forall</literal> scope over
5463 the entire definition of the accompanying value declaration.
5464 In this example, the type variable <literal>a</literal> scopes over the whole 
5465 definition of <literal>f</literal>, including over
5466 the type signature for <varname>ys</varname>. 
5467 In Haskell 98 it is not possible to declare
5468 a type for <varname>ys</varname>; a major benefit of scoped type variables is that
5469 it becomes possible to do so.
5470 </para>
5471 <para>Lexically-scoped type variables are enabled by
5472 <option>-XScopedTypeVariables</option>.  This flag implies <option>-XRelaxedPolyRec</option>.
5473 </para>
5474 <para>Note: GHC 6.6 contains substantial changes to the way that scoped type
5475 variables work, compared to earlier releases.  Read this section
5476 carefully!</para>
5477
5478 <sect3>
5479 <title>Overview</title>
5480
5481 <para>The design follows the following principles
5482 <itemizedlist>
5483 <listitem><para>A scoped type variable stands for a type <emphasis>variable</emphasis>, and not for
5484 a <emphasis>type</emphasis>. (This is a change from GHC's earlier
5485 design.)</para></listitem>
5486 <listitem><para>Furthermore, distinct lexical type variables stand for distinct
5487 type variables.  This means that every programmer-written type signature
5488 (including one that contains free scoped type variables) denotes a
5489 <emphasis>rigid</emphasis> type; that is, the type is fully known to the type
5490 checker, and no inference is involved.</para></listitem>
5491 <listitem><para>Lexical type variables may be alpha-renamed freely, without
5492 changing the program.</para></listitem>
5493 </itemizedlist>
5494 </para>
5495 <para>
5496 A <emphasis>lexically scoped type variable</emphasis> can be bound by:
5497 <itemizedlist>
5498 <listitem><para>A declaration type signature (<xref linkend="decl-type-sigs"/>)</para></listitem>
5499 <listitem><para>An expression type signature (<xref linkend="exp-type-sigs"/>)</para></listitem>
5500 <listitem><para>A pattern type signature (<xref linkend="pattern-type-sigs"/>)</para></listitem>
5501 <listitem><para>Class and instance declarations (<xref linkend="cls-inst-scoped-tyvars"/>)</para></listitem>
5502 </itemizedlist>
5503 </para>
5504 <para>
5505 In Haskell, a programmer-written type signature is implicitly quantified over
5506 its free type variables (<ulink
5507 url="http://www.haskell.org/onlinereport/decls.html#sect4.1.2">Section
5508 4.1.2</ulink> 
5509 of the Haskell Report).
5510 Lexically scoped type variables affect this implicit quantification rules
5511 as follows: any type variable that is in scope is <emphasis>not</emphasis> universally
5512 quantified. For example, if type variable <literal>a</literal> is in scope,
5513 then
5514 <programlisting>
5515   (e :: a -> a)     means     (e :: a -> a)
5516   (e :: b -> b)     means     (e :: forall b. b->b)
5517   (e :: a -> b)     means     (e :: forall b. a->b)
5518 </programlisting>
5519 </para>
5520
5521
5522 </sect3>
5523
5524
5525 <sect3 id="decl-type-sigs">
5526 <title>Declaration type signatures</title>
5527 <para>A declaration type signature that has <emphasis>explicit</emphasis>
5528 quantification (using <literal>forall</literal>) brings into scope the
5529 explicitly-quantified
5530 type variables, in the definition of the named function.  For example:
5531 <programlisting>
5532   f :: forall a. [a] -> [a]
5533   f (x:xs) = xs ++ [ x :: a ]
5534 </programlisting>
5535 The "<literal>forall a</literal>" brings "<literal>a</literal>" into scope in
5536 the definition of "<literal>f</literal>".
5537 </para>
5538 <para>This only happens if:
5539 <itemizedlist>
5540 <listitem><para> The quantification in <literal>f</literal>'s type
5541 signature is explicit.  For example:
5542 <programlisting>
5543   g :: [a] -> [a]
5544   g (x:xs) = xs ++ [ x :: a ]
5545 </programlisting>
5546 This program will be rejected, because "<literal>a</literal>" does not scope
5547 over the definition of "<literal>f</literal>", so "<literal>x::a</literal>"
5548 means "<literal>x::forall a. a</literal>" by Haskell's usual implicit
5549 quantification rules.
5550 </para></listitem>
5551 <listitem><para> The signature gives a type for a function binding or a bare variable binding, 
5552 not a pattern binding.
5553 For example:
5554 <programlisting>
5555   f1 :: forall a. [a] -> [a]
5556   f1 (x:xs) = xs ++ [ x :: a ]   -- OK
5557
5558   f2 :: forall a. [a] -> [a]
5559   f2 = \(x:xs) -> xs ++ [ x :: a ]   -- OK
5560
5561   f3 :: forall a. [a] -> [a] 
5562   Just f3 = Just (\(x:xs) -> xs ++ [ x :: a ])   -- Not OK!
5563 </programlisting>
5564 The binding for <literal>f3</literal> is a pattern binding, and so its type signature
5565 does not bring <literal>a</literal> into scope.   However <literal>f1</literal> is a
5566 function binding, and <literal>f2</literal> binds a bare variable; in both cases
5567 the type signature brings <literal>a</literal> into scope.
5568 </para></listitem>
5569 </itemizedlist>
5570 </para>
5571 </sect3>
5572
5573 <sect3 id="exp-type-sigs">
5574 <title>Expression type signatures</title>
5575
5576 <para>An expression type signature that has <emphasis>explicit</emphasis>
5577 quantification (using <literal>forall</literal>) brings into scope the
5578 explicitly-quantified
5579 type variables, in the annotated expression.  For example:
5580 <programlisting>
5581   f = runST ( (op >>= \(x :: STRef s Int) -> g x) :: forall s. ST s Bool )
5582 </programlisting>
5583 Here, the type signature <literal>forall a. ST s Bool</literal> brings the 
5584 type variable <literal>s</literal> into scope, in the annotated expression 
5585 <literal>(op >>= \(x :: STRef s Int) -> g x)</literal>.
5586 </para>
5587
5588 </sect3>
5589
5590 <sect3 id="pattern-type-sigs">
5591 <title>Pattern type signatures</title>
5592 <para>
5593 A type signature may occur in any pattern; this is a <emphasis>pattern type
5594 signature</emphasis>. 
5595 For example:
5596 <programlisting>
5597   -- f and g assume that 'a' is already in scope
5598   f = \(x::Int, y::a) -> x
5599   g (x::a) = x
5600   h ((x,y) :: (Int,Bool)) = (y,x)
5601 </programlisting>
5602 In the case where all the type variables in the pattern type signature are
5603 already in scope (i.e. bound by the enclosing context), matters are simple: the
5604 signature simply constrains the type of the pattern in the obvious way.
5605 </para>
5606 <para>
5607 Unlike expression and declaration type signatures, pattern type signatures are not implicitly generalised.
5608 The pattern in a <emphasis>pattern binding</emphasis> may only mention type variables
5609 that are already in scope.  For example:
5610 <programlisting>
5611   f :: forall a. [a] -> (Int, [a])
5612   f xs = (n, zs)
5613     where
5614       (ys::[a], n) = (reverse xs, length xs) -- OK
5615       zs::[a] = xs ++ ys                     -- OK
5616
5617       Just (v::b) = ...  -- Not OK; b is not in scope
5618 </programlisting>
5619 Here, the pattern signatures for <literal>ys</literal> and <literal>zs</literal>
5620 are fine, but the one for <literal>v</literal> is not because <literal>b</literal> is
5621 not in scope. 
5622 </para>
5623 <para>
5624 However, in all patterns <emphasis>other</emphasis> than pattern bindings, a pattern
5625 type signature may mention a type variable that is not in scope; in this case,
5626 <emphasis>the signature brings that type variable into scope</emphasis>.
5627 This is particularly important for existential data constructors.  For example:
5628 <programlisting>
5629   data T = forall a. MkT [a]
5630
5631   k :: T -> T
5632   k (MkT [t::a]) = MkT t3
5633                  where
5634                    t3::[a] = [t,t,t]
5635 </programlisting>
5636 Here, the pattern type signature <literal>(t::a)</literal> mentions a lexical type
5637 variable that is not already in scope.  Indeed, it <emphasis>cannot</emphasis> already be in scope,
5638 because it is bound by the pattern match.  GHC's rule is that in this situation
5639 (and only then), a pattern type signature can mention a type variable that is
5640 not already in scope; the effect is to bring it into scope, standing for the
5641 existentially-bound type variable.
5642 </para>
5643 <para>
5644 When a pattern type signature binds a type variable in this way, GHC insists that the 
5645 type variable is bound to a <emphasis>rigid</emphasis>, or fully-known, type variable.
5646 This means that any user-written type signature always stands for a completely known type.
5647 </para>
5648 <para>
5649 If all this seems a little odd, we think so too.  But we must have
5650 <emphasis>some</emphasis> way to bring such type variables into scope, else we
5651 could not name existentially-bound type variables in subsequent type signatures.
5652 </para>
5653 <para>
5654 This is (now) the <emphasis>only</emphasis> situation in which a pattern type 
5655 signature is allowed to mention a lexical variable that is not already in
5656 scope.
5657 For example, both <literal>f</literal> and <literal>g</literal> would be
5658 illegal if <literal>a</literal> was not already in scope.
5659 </para>
5660
5661
5662 </sect3>
5663
5664 <!-- ==================== Commented out part about result type signatures 
5665
5666 <sect3 id="result-type-sigs">
5667 <title>Result type signatures</title>
5668
5669 <para>
5670 The result type of a function, lambda, or case expression alternative can be given a signature, thus:
5671
5672 <programlisting>
5673   {- f assumes that 'a' is already in scope -}
5674   f x y :: [a] = [x,y,x]
5675
5676   g = \ x :: [Int] -> [3,4]
5677
5678   h :: forall a. [a] -> a
5679   h xs = case xs of
5680             (y:ys) :: a -> y
5681 </programlisting>
5682 The final <literal>:: [a]</literal> after the patterns of <literal>f</literal> gives the type of 
5683 the result of the function.  Similarly, the body of the lambda in the RHS of
5684 <literal>g</literal> is <literal>[Int]</literal>, and the RHS of the case
5685 alternative in <literal>h</literal> is <literal>a</literal>.
5686 </para>
5687 <para> A result type signature never brings new type variables into scope.</para>
5688 <para>
5689 There are a couple of syntactic wrinkles.  First, notice that all three
5690 examples would parse quite differently with parentheses:
5691 <programlisting>
5692   {- f assumes that 'a' is already in scope -}
5693   f x (y :: [a]) = [x,y,x]
5694
5695   g = \ (x :: [Int]) -> [3,4]
5696
5697   h :: forall a. [a] -> a
5698   h xs = case xs of
5699             ((y:ys) :: a) -> y
5700 </programlisting>
5701 Now the signature is on the <emphasis>pattern</emphasis>; and
5702 <literal>h</literal> would certainly be ill-typed (since the pattern
5703 <literal>(y:ys)</literal> cannot have the type <literal>a</literal>.
5704
5705 Second, to avoid ambiguity, the type after the &ldquo;<literal>::</literal>&rdquo; in a result
5706 pattern signature on a lambda or <literal>case</literal> must be atomic (i.e. a single
5707 token or a parenthesised type of some sort).  To see why,
5708 consider how one would parse this:
5709 <programlisting>
5710   \ x :: a -> b -> x
5711 </programlisting>
5712 </para>
5713 </sect3>
5714
5715  -->
5716
5717 <sect3 id="cls-inst-scoped-tyvars">
5718 <title>Class and instance declarations</title>
5719 <para>
5720
5721 The type variables in the head of a <literal>class</literal> or <literal>instance</literal> declaration
5722 scope over the methods defined in the <literal>where</literal> part.  For example:
5723
5724
5725 <programlisting>
5726   class C a where
5727     op :: [a] -> a
5728
5729     op xs = let ys::[a]
5730                 ys = reverse xs
5731             in
5732             head ys
5733 </programlisting>
5734 </para>
5735 </sect3>
5736
5737 </sect2>
5738
5739
5740 <sect2 id="typing-binds">
5741 <title>Generalised typing of mutually recursive bindings</title>
5742
5743 <para>
5744 The Haskell Report specifies that a group of bindings (at top level, or in a
5745 <literal>let</literal> or <literal>where</literal>) should be sorted into
5746 strongly-connected components, and then type-checked in dependency order
5747 (<ulink url="http://www.haskell.org/onlinereport/decls.html#sect4.5.1">Haskell
5748 Report, Section 4.5.1</ulink>).  
5749 As each group is type-checked, any binders of the group that
5750 have
5751 an explicit type signature are put in the type environment with the specified
5752 polymorphic type,
5753 and all others are monomorphic until the group is generalised 
5754 (<ulink url="http://www.haskell.org/onlinereport/decls.html#sect4.5.2">Haskell Report, Section 4.5.2</ulink>).
5755 </para>
5756
5757 <para>Following a suggestion of Mark Jones, in his paper
5758 <ulink url="http://citeseer.ist.psu.edu/424440.html">Typing Haskell in
5759 Haskell</ulink>,
5760 GHC implements a more general scheme.  If <option>-XRelaxedPolyRec</option> is
5761 specified:
5762 <emphasis>the dependency analysis ignores references to variables that have an explicit
5763 type signature</emphasis>.
5764 As a result of this refined dependency analysis, the dependency groups are smaller, and more bindings will
5765 typecheck.  For example, consider:
5766 <programlisting>
5767   f :: Eq a =&gt; a -> Bool
5768   f x = (x == x) || g True || g "Yes"
5769   
5770   g y = (y &lt;= y) || f True
5771 </programlisting>
5772 This is rejected by Haskell 98, but under Jones's scheme the definition for
5773 <literal>g</literal> is typechecked first, separately from that for
5774 <literal>f</literal>,
5775 because the reference to <literal>f</literal> in <literal>g</literal>'s right
5776 hand side is ignored by the dependency analysis.  Then <literal>g</literal>'s
5777 type is generalised, to get
5778 <programlisting>
5779   g :: Ord a =&gt; a -> Bool
5780 </programlisting>
5781 Now, the definition for <literal>f</literal> is typechecked, with this type for
5782 <literal>g</literal> in the type environment.
5783 </para>
5784
5785 <para>
5786 The same refined dependency analysis also allows the type signatures of 
5787 mutually-recursive functions to have different contexts, something that is illegal in
5788 Haskell 98 (Section 4.5.2, last sentence).  With
5789 <option>-XRelaxedPolyRec</option>
5790 GHC only insists that the type signatures of a <emphasis>refined</emphasis> group have identical
5791 type signatures; in practice this means that only variables bound by the same
5792 pattern binding must have the same context.  For example, this is fine:
5793 <programlisting>
5794   f :: Eq a =&gt; a -> Bool
5795   f x = (x == x) || g True
5796   
5797   g :: Ord a =&gt; a -> Bool
5798   g y = (y &lt;= y) || f True
5799 </programlisting>
5800 </para>
5801 </sect2>
5802
5803 </sect1>
5804 <!-- ==================== End of type system extensions =================  -->
5805   
5806 <!-- ====================== TEMPLATE HASKELL =======================  -->
5807
5808 <sect1 id="template-haskell">
5809 <title>Template Haskell</title>
5810
5811 <para>Template Haskell allows you to do compile-time meta-programming in
5812 Haskell.  
5813 The background to
5814 the main technical innovations is discussed in "<ulink
5815 url="http://research.microsoft.com/~simonpj/papers/meta-haskell/">
5816 Template Meta-programming for Haskell</ulink>" (Proc Haskell Workshop 2002).
5817 </para>
5818 <para>
5819 There is a Wiki page about
5820 Template Haskell at <ulink url="http://www.haskell.org/haskellwiki/Template_Haskell">
5821 http://www.haskell.org/haskellwiki/Template_Haskell</ulink>, and that is the best place to look for
5822 further details.
5823 You may also 
5824 consult the <ulink
5825 url="http://www.haskell.org/ghc/docs/latest/html/libraries/index.html">online
5826 Haskell library reference material</ulink> 
5827 (look for module <literal>Language.Haskell.TH</literal>).
5828 Many changes to the original design are described in 
5829       <ulink url="http://research.microsoft.com/~simonpj/papers/meta-haskell/notes2.ps">
5830 Notes on Template Haskell version 2</ulink>.
5831 Not all of these changes are in GHC, however.
5832 </para>
5833
5834 <para> The first example from that paper is set out below (<xref linkend="th-example"/>) 
5835 as a worked example to help get you started. 
5836 </para>
5837
5838 <para>
5839 The documentation here describes the realisation of Template Haskell in GHC.  It is not detailed enough to 
5840 understand Template Haskell; see the <ulink url="http://haskell.org/haskellwiki/Template_Haskell">
5841 Wiki page</ulink>.
5842 </para>
5843
5844     <sect2>
5845       <title>Syntax</title>
5846
5847       <para> Template Haskell has the following new syntactic
5848       constructions.  You need to use the flag
5849       <option>-XTemplateHaskell</option>
5850         <indexterm><primary><option>-XTemplateHaskell</option></primary>
5851       </indexterm>to switch these syntactic extensions on
5852       (<option>-XTemplateHaskell</option> is no longer implied by
5853       <option>-fglasgow-exts</option>).</para>
5854
5855         <itemizedlist>
5856               <listitem><para>
5857                   A splice is written <literal>$x</literal>, where <literal>x</literal> is an
5858                   identifier, or <literal>$(...)</literal>, where the "..." is an arbitrary expression.
5859                   There must be no space between the "$" and the identifier or parenthesis.  This use
5860                   of "$" overrides its meaning as an infix operator, just as "M.x" overrides the meaning
5861                   of "." as an infix operator.  If you want the infix operator, put spaces around it.
5862                   </para>
5863               <para> A splice can occur in place of 
5864                   <itemizedlist>
5865                     <listitem><para> an expression; the spliced expression must
5866                     have type <literal>Q Exp</literal></para></listitem>
5867                     <listitem><para> an type; the spliced expression must
5868                     have type <literal>Q Typ</literal></para></listitem>
5869                     <listitem><para> a list of top-level declarations; the spliced expression must have type <literal>Q [Dec]</literal></para></listitem>
5870                     </itemizedlist>
5871                 </para>
5872             Inside a splice you can can only call functions defined in imported modules,
5873         not functions defined elsewhere in the same module.</listitem>
5874
5875
5876               <listitem><para>
5877                   A expression quotation is written in Oxford brackets, thus:
5878                   <itemizedlist>
5879                     <listitem><para> <literal>[| ... |]</literal>, where the "..." is an expression; 
5880                              the quotation has type <literal>Q Exp</literal>.</para></listitem>
5881                     <listitem><para> <literal>[d| ... |]</literal>, where the "..." is a list of top-level declarations;
5882                              the quotation has type <literal>Q [Dec]</literal>.</para></listitem>
5883                     <listitem><para> <literal>[t| ... |]</literal>, where the "..." is a type;
5884                              the quotation has type <literal>Q Typ</literal>.</para></listitem>
5885                   </itemizedlist></para></listitem>
5886
5887               <listitem><para>
5888                   A quasi-quotation can appear in either a pattern context or an
5889                   expression context and is also written in Oxford brackets:
5890                   <itemizedlist>
5891                     <listitem><para> <literal>[:<replaceable>varid</replaceable>| ... |]</literal>,
5892                         where the "..." is an arbitrary string; a full description of the
5893                         quasi-quotation facility is given in <xref linkend="th-quasiquotation"/>.</para></listitem>
5894                   </itemizedlist></para></listitem>
5895
5896               <listitem><para>
5897                   A name can be quoted with either one or two prefix single quotes:
5898                   <itemizedlist>
5899                     <listitem><para> <literal>'f</literal> has type <literal>Name</literal>, and names the function <literal>f</literal>.
5900                   Similarly <literal>'C</literal> has type <literal>Name</literal> and names the data constructor <literal>C</literal>.
5901                   In general <literal>'</literal><replaceable>thing</replaceable> interprets <replaceable>thing</replaceable> in an expression context.
5902                      </para></listitem> 
5903                     <listitem><para> <literal>''T</literal> has type <literal>Name</literal>, and names the type constructor  <literal>T</literal>.
5904                   That is, <literal>''</literal><replaceable>thing</replaceable> interprets <replaceable>thing</replaceable> in a type context.
5905                      </para></listitem> 
5906                   </itemizedlist>
5907                   These <literal>Names</literal> can be used to construct Template Haskell expressions, patterns, declarations etc.  They
5908                   may also be given as an argument to the <literal>reify</literal> function.
5909                  </para>
5910                 </listitem>
5911
5912                   
5913         </itemizedlist>
5914 (Compared to the original paper, there are many differences of detail.
5915 The syntax for a declaration splice uses "<literal>$</literal>" not "<literal>splice</literal>".
5916 The type of the enclosed expression must be  <literal>Q [Dec]</literal>, not  <literal>[Q Dec]</literal>.
5917 Pattern splices and quotations are not implemented.)
5918
5919 </sect2>
5920
5921 <sect2>  <title> Using Template Haskell </title>
5922 <para>
5923 <itemizedlist>
5924     <listitem><para>
5925     The data types and monadic constructor functions for Template Haskell are in the library
5926     <literal>Language.Haskell.THSyntax</literal>.
5927     </para></listitem>
5928
5929     <listitem><para>
5930     You can only run a function at compile time if it is imported from another module.  That is,
5931             you can't define a function in a module, and call it from within a splice in the same module.
5932             (It would make sense to do so, but it's hard to implement.)
5933    </para></listitem>
5934
5935    <listitem><para>
5936    You can only run a function at compile time if it is imported
5937    from another module <emphasis>that is not part of a mutually-recursive group of modules
5938    that includes the module currently being compiled</emphasis>.  Furthermore, all of the modules of 
5939    the mutually-recursive group must be reachable by non-SOURCE imports from the module where the
5940    splice is to be run.</para>
5941    <para>
5942    For example, when compiling module A,
5943    you can only run Template Haskell functions imported from B if B does not import A (directly or indirectly).
5944    The reason should be clear: to run B we must compile and run A, but we are currently type-checking A.
5945    </para></listitem>
5946
5947     <listitem><para>
5948             The flag <literal>-ddump-splices</literal> shows the expansion of all top-level splices as they happen.
5949    </para></listitem>
5950     <listitem><para>
5951             If you are building GHC from source, you need at least a stage-2 bootstrap compiler to
5952               run Template Haskell.  A stage-1 compiler will reject the TH constructs.  Reason: TH
5953               compiles and runs a program, and then looks at the result.  So it's important that
5954               the program it compiles produces results whose representations are identical to
5955               those of the compiler itself.
5956    </para></listitem>
5957 </itemizedlist>
5958 </para>
5959 <para> Template Haskell works in any mode (<literal>--make</literal>, <literal>--interactive</literal>,
5960         or file-at-a-time).  There used to be a restriction to the former two, but that restriction 
5961         has been lifted.
5962 </para>
5963 </sect2>
5964  
5965 <sect2 id="th-example">  <title> A Template Haskell Worked Example </title>
5966 <para>To help you get over the confidence barrier, try out this skeletal worked example.
5967   First cut and paste the two modules below into "Main.hs" and "Printf.hs":</para>
5968
5969 <programlisting>
5970
5971 {- Main.hs -}
5972 module Main where
5973
5974 -- Import our template "pr"
5975 import Printf ( pr )
5976
5977 -- The splice operator $ takes the Haskell source code
5978 -- generated at compile time by "pr" and splices it into
5979 -- the argument of "putStrLn".
5980 main = putStrLn ( $(pr "Hello") )
5981
5982
5983 {- Printf.hs -}
5984 module Printf where
5985
5986 -- Skeletal printf from the paper.
5987 -- It needs to be in a separate module to the one where
5988 -- you intend to use it.
5989
5990 -- Import some Template Haskell syntax
5991 import Language.Haskell.TH
5992
5993 -- Describe a format string
5994 data Format = D | S | L String
5995
5996 -- Parse a format string.  This is left largely to you
5997 -- as we are here interested in building our first ever
5998 -- Template Haskell program and not in building printf.
5999 parse :: String -> [Format]
6000 parse s   = [ L s ]
6001
6002 -- Generate Haskell source code from a parsed representation
6003 -- of the format string.  This code will be spliced into
6004 -- the module which calls "pr", at compile time.
6005 gen :: [Format] -> Q Exp
6006 gen [D]   = [| \n -> show n |]
6007 gen [S]   = [| \s -> s |]
6008 gen [L s] = stringE s
6009
6010 -- Here we generate the Haskell code for the splice
6011 -- from an input format string.
6012 pr :: String -> Q Exp
6013 pr s = gen (parse s)
6014 </programlisting>
6015
6016 <para>Now run the compiler (here we are a Cygwin prompt on Windows):
6017 </para>
6018 <programlisting>
6019 $ ghc --make -XTemplateHaskell main.hs -o main.exe
6020 </programlisting>
6021
6022 <para>Run "main.exe" and here is your output:</para>
6023
6024 <programlisting>
6025 $ ./main
6026 Hello
6027 </programlisting>
6028
6029 </sect2>
6030
6031 <sect2>
6032 <title>Using Template Haskell with Profiling</title>
6033 <indexterm><primary>profiling</primary><secondary>with Template Haskell</secondary></indexterm>
6034  
6035 <para>Template Haskell relies on GHC's built-in bytecode compiler and
6036 interpreter to run the splice expressions.  The bytecode interpreter
6037 runs the compiled expression on top of the same runtime on which GHC
6038 itself is running; this means that the compiled code referred to by
6039 the interpreted expression must be compatible with this runtime, and
6040 in particular this means that object code that is compiled for
6041 profiling <emphasis>cannot</emphasis> be loaded and used by a splice
6042 expression, because profiled object code is only compatible with the
6043 profiling version of the runtime.</para>
6044
6045 <para>This causes difficulties if you have a multi-module program
6046 containing Template Haskell code and you need to compile it for
6047 profiling, because GHC cannot load the profiled object code and use it
6048 when executing the splices.  Fortunately GHC provides a workaround.
6049 The basic idea is to compile the program twice:</para>
6050
6051 <orderedlist>
6052 <listitem>
6053   <para>Compile the program or library first the normal way, without
6054   <option>-prof</option><indexterm><primary><option>-prof</option></primary></indexterm>.</para>
6055 </listitem>
6056 <listitem>
6057   <para>Then compile it again with <option>-prof</option>, and
6058   additionally use <option>-osuf
6059   p_o</option><indexterm><primary><option>-osuf</option></primary></indexterm>
6060   to name the object files differently (you can choose any suffix
6061   that isn't the normal object suffix here).  GHC will automatically
6062   load the object files built in the first step when executing splice
6063   expressions.  If you omit the <option>-osuf</option> flag when
6064   building with <option>-prof</option> and Template Haskell is used,
6065   GHC will emit an error message. </para>
6066 </listitem>
6067 </orderedlist>
6068 </sect2>
6069
6070 <sect2 id="th-quasiquotation">  <title> Template Haskell Quasi-quotation </title>
6071 <para>Quasi-quotation allows patterns and expressions to be written using
6072 programmer-defined concrete syntax; the motivation behind the extension and
6073 several examples are documented in
6074 "<ulink url="http://www.eecs.harvard.edu/~mainland/ghc-quasiquoting/">Why It's
6075 Nice to be Quoted: Quasiquoting for Haskell</ulink>" (Proc Haskell Workshop
6076 2007). The example below shows how to write a quasiquoter for a simple
6077 expression language.</para>
6078
6079 <para>
6080 In the example, the quasiquoter <literal>expr</literal> is bound to a value of
6081 type <literal>Language.Haskell.TH.Quote.QuasiQuoter</literal> which contains two
6082 functions for quoting expressions and patterns, respectively. The first argument
6083 to each quoter is the (arbitrary) string enclosed in the Oxford brackets. The
6084 context of the quasi-quotation statement determines which of the two parsers is
6085 called: if the quasi-quotation occurs in an expression context, the expression
6086 parser is called, and if it occurs in a pattern context, the pattern parser is
6087 called.</para>
6088
6089 <para>
6090 Note that in the example we make use of an antiquoted
6091 variable <literal>n</literal>, indicated by the syntax <literal>'int:n</literal>
6092 (this syntax for anti-quotation was defined by the parser's
6093 author, <emphasis>not</emphasis> by GHC). This binds <literal>n</literal> to the
6094 integer value argument of the constructor <literal>IntExpr</literal> when
6095 pattern matching. Please see the referenced paper for further details regarding
6096 anti-quotation as well as the description of a technique that uses SYB to
6097 leverage a single parser of type <literal>String -> a</literal> to generate both
6098 an expression parser that returns a value of type <literal>Q Exp</literal> and a
6099 pattern parser that returns a value of type <literal>Q Pat</literal>.
6100 </para>
6101
6102 <para>In general, a quasi-quote has the form
6103 <literal>[$<replaceable>quoter</replaceable>| <replaceable>string</replaceable> |]</literal>.
6104 The <replaceable>quoter</replaceable> must be the name of an imported quoter; it
6105 cannot be an arbitrary expression.  The quoted <replaceable>string</replaceable> 
6106 can be arbitrary, and may contain newlines.
6107 </para>
6108 <para>
6109 Quasiquoters must obey the same stage restrictions as Template Haskell, e.g., in
6110 the example, <literal>expr</literal> cannot be defined
6111 in <literal>Main.hs</literal> where it is used, but must be imported.
6112 </para>
6113
6114 <programlisting>
6115
6116 {- Main.hs -}
6117 module Main where
6118
6119 import Expr
6120
6121 main :: IO ()
6122 main = do { print $ eval [$expr|1 + 2|]
6123           ; case IntExpr 1 of
6124               { [$expr|'int:n|] -> print n
6125               ;  _              -> return ()
6126               }
6127           }
6128
6129
6130 {- Expr.hs -}
6131 module Expr where
6132
6133 import qualified Language.Haskell.TH as TH
6134 import Language.Haskell.TH.Quote
6135
6136 data Expr  =  IntExpr Integer
6137            |  AntiIntExpr String
6138            |  BinopExpr BinOp Expr Expr
6139            |  AntiExpr String
6140     deriving(Show, Typeable, Data)
6141
6142 data BinOp  =  AddOp
6143             |  SubOp
6144             |  MulOp
6145             |  DivOp
6146     deriving(Show, Typeable, Data)
6147
6148 eval :: Expr -> Integer
6149 eval (IntExpr n)        = n
6150 eval (BinopExpr op x y) = (opToFun op) (eval x) (eval y)
6151   where
6152     opToFun AddOp = (+)
6153     opToFun SubOp = (-)
6154     opToFun MulOp = (*)
6155     opToFun DivOp = div
6156
6157 expr = QuasiQuoter parseExprExp parseExprPat
6158
6159 -- Parse an Expr, returning its representation as
6160 -- either a Q Exp or a Q Pat. See the referenced paper
6161 -- for how to use SYB to do this by writing a single
6162 -- parser of type String -> Expr instead of two
6163 -- separate parsers.
6164
6165 parseExprExp :: String -> Q Exp
6166 parseExprExp ...
6167
6168 parseExprPat :: String -> Q Pat
6169 parseExprPat ...
6170 </programlisting>
6171
6172 <para>Now run the compiler:
6173 </para>
6174 <programlisting>
6175 $ ghc --make -XQuasiQuotes Main.hs -o main
6176 </programlisting>
6177
6178 <para>Run "main" and here is your output:</para>
6179
6180 <programlisting>
6181 $ ./main
6182 3
6183 1
6184 </programlisting>
6185
6186 </sect2>
6187
6188 </sect1>
6189
6190 <!-- ===================== Arrow notation ===================  -->
6191
6192 <sect1 id="arrow-notation">
6193 <title>Arrow notation
6194 </title>
6195
6196 <para>Arrows are a generalization of monads introduced by John Hughes.
6197 For more details, see
6198 <itemizedlist>
6199
6200 <listitem>
6201 <para>
6202 &ldquo;Generalising Monads to Arrows&rdquo;,
6203 John Hughes, in <citetitle>Science of Computer Programming</citetitle> 37,
6204 pp67&ndash;111, May 2000.
6205 The paper that introduced arrows: a friendly introduction, motivated with
6206 programming examples.
6207 </para>
6208 </listitem>
6209
6210 <listitem>
6211 <para>
6212 &ldquo;<ulink url="http://www.soi.city.ac.uk/~ross/papers/notation.html">A New Notation for Arrows</ulink>&rdquo;,
6213 Ross Paterson, in <citetitle>ICFP</citetitle>, Sep 2001.
6214 Introduced the notation described here.
6215 </para>
6216 </listitem>
6217
6218 <listitem>
6219 <para>
6220 &ldquo;<ulink url="http://www.soi.city.ac.uk/~ross/papers/fop.html">Arrows and Computation</ulink>&rdquo;,
6221 Ross Paterson, in <citetitle>The Fun of Programming</citetitle>,
6222 Palgrave, 2003.
6223 </para>
6224 </listitem>
6225
6226 <listitem>
6227 <para>
6228 &ldquo;<ulink url="http://www.cs.chalmers.se/~rjmh/afp-arrows.pdf">Programming with Arrows</ulink>&rdquo;,
6229 John Hughes, in <citetitle>5th International Summer School on
6230 Advanced Functional Programming</citetitle>,
6231 <citetitle>Lecture Notes in Computer Science</citetitle> vol. 3622,
6232 Springer, 2004.
6233 This paper includes another introduction to the notation,
6234 with practical examples.
6235 </para>
6236 </listitem>
6237
6238 <listitem>
6239 <para>
6240 &ldquo;<ulink url="http://www.haskell.org/ghc/docs/papers/arrow-rules.pdf">Type and Translation Rules for Arrow Notation in GHC</ulink>&rdquo;,
6241 Ross Paterson and Simon Peyton Jones, September 16, 2004.
6242 A terse enumeration of the formal rules used
6243 (extracted from comments in the source code).
6244 </para>
6245 </listitem>
6246
6247 <listitem>
6248 <para>
6249 The arrows web page at
6250 <ulink url="http://www.haskell.org/arrows/"><literal>http://www.haskell.org/arrows/</literal></ulink>.
6251 </para>
6252 </listitem>
6253
6254 </itemizedlist>
6255 With the <option>-XArrows</option> flag, GHC supports the arrow
6256 notation described in the second of these papers,
6257 translating it using combinators from the
6258 <ulink url="../libraries/base/Control-Arrow.html"><literal>Control.Arrow</literal></ulink>
6259 module.
6260 What follows is a brief introduction to the notation;
6261 it won't make much sense unless you've read Hughes's paper.
6262 </para>
6263
6264 <para>The extension adds a new kind of expression for defining arrows:
6265 <screen>
6266 <replaceable>exp</replaceable><superscript>10</superscript> ::= ...
6267        |  proc <replaceable>apat</replaceable> -> <replaceable>cmd</replaceable>
6268 </screen>
6269 where <literal>proc</literal> is a new keyword.
6270 The variables of the pattern are bound in the body of the 
6271 <literal>proc</literal>-expression,
6272 which is a new sort of thing called a <firstterm>command</firstterm>.
6273 The syntax of commands is as follows:
6274 <screen>
6275 <replaceable>cmd</replaceable>   ::= <replaceable>exp</replaceable><superscript>10</superscript> -&lt;  <replaceable>exp</replaceable>
6276        |  <replaceable>exp</replaceable><superscript>10</superscript> -&lt;&lt; <replaceable>exp</replaceable>
6277        |  <replaceable>cmd</replaceable><superscript>0</superscript>
6278 </screen>
6279 with <replaceable>cmd</replaceable><superscript>0</superscript> up to
6280 <replaceable>cmd</replaceable><superscript>9</superscript> defined using
6281 infix operators as for expressions, and
6282 <screen>
6283 <replaceable>cmd</replaceable><superscript>10</superscript> ::= \ <replaceable>apat</replaceable> ... <replaceable>apat</replaceable> -> <replaceable>cmd</replaceable>
6284        |  let <replaceable>decls</replaceable> in <replaceable>cmd</replaceable>
6285        |  if <replaceable>exp</replaceable> then <replaceable>cmd</replaceable> else <replaceable>cmd</replaceable>
6286        |  case <replaceable>exp</replaceable> of { <replaceable>calts</replaceable> }
6287        |  do { <replaceable>cstmt</replaceable> ; ... <replaceable>cstmt</replaceable> ; <replaceable>cmd</replaceable> }
6288        |  <replaceable>fcmd</replaceable>
6289
6290 <replaceable>fcmd</replaceable>  ::= <replaceable>fcmd</replaceable> <replaceable>aexp</replaceable>
6291        |  ( <replaceable>cmd</replaceable> )
6292        |  (| <replaceable>aexp</replaceable> <replaceable>cmd</replaceable> ... <replaceable>cmd</replaceable> |)
6293
6294 <replaceable>cstmt</replaceable> ::= let <replaceable>decls</replaceable>
6295        |  <replaceable>pat</replaceable> &lt;- <replaceable>cmd</replaceable>
6296        |  rec { <replaceable>cstmt</replaceable> ; ... <replaceable>cstmt</replaceable> [;] }
6297        |  <replaceable>cmd</replaceable>
6298 </screen>
6299 where <replaceable>calts</replaceable> are like <replaceable>alts</replaceable>
6300 except that the bodies are commands instead of expressions.
6301 </para>
6302
6303 <para>
6304 Commands produce values, but (like monadic computations)
6305 may yield more than one value,
6306 or none, and may do other things as well.
6307 For the most part, familiarity with monadic notation is a good guide to
6308 using commands.
6309 However the values of expressions, even monadic ones,
6310 are determined by the values of the variables they contain;
6311 this is not necessarily the case for commands.
6312 </para>
6313
6314 <para>
6315 A simple example of the new notation is the expression
6316 <screen>
6317 proc x -> f -&lt; x+1
6318 </screen>
6319 We call this a <firstterm>procedure</firstterm> or
6320 <firstterm>arrow abstraction</firstterm>.
6321 As with a lambda expression, the variable <literal>x</literal>
6322 is a new variable bound within the <literal>proc</literal>-expression.
6323 It refers to the input to the arrow.
6324 In the above example, <literal>-&lt;</literal> is not an identifier but an
6325 new reserved symbol used for building commands from an expression of arrow
6326 type and an expression to be fed as input to that arrow.
6327 (The weird look will make more sense later.)
6328 It may be read as analogue of application for arrows.
6329 The above example is equivalent to the Haskell expression
6330 <screen>
6331 arr (\ x -> x+1) >>> f
6332 </screen>
6333 That would make no sense if the expression to the left of
6334 <literal>-&lt;</literal> involves the bound variable <literal>x</literal>.
6335 More generally, the expression to the left of <literal>-&lt;</literal>
6336 may not involve any <firstterm>local variable</firstterm>,
6337 i.e. a variable bound in the current arrow abstraction.
6338 For such a situation there is a variant <literal>-&lt;&lt;</literal>, as in
6339 <screen>
6340 proc x -> f x -&lt;&lt; x+1
6341 </screen>
6342 which is equivalent to
6343 <screen>
6344 arr (\ x -> (f x, x+1)) >>> app
6345 </screen>
6346 so in this case the arrow must belong to the <literal>ArrowApply</literal>
6347 class.
6348 Such an arrow is equivalent to a monad, so if you're using this form
6349 you may find a monadic formulation more convenient.
6350 </para>
6351
6352 <sect2>
6353 <title>do-notation for commands</title>
6354
6355 <para>
6356 Another form of command is a form of <literal>do</literal>-notation.
6357 For example, you can write
6358 <screen>
6359 proc x -> do
6360         y &lt;- f -&lt; x+1
6361         g -&lt; 2*y
6362         let z = x+y
6363         t &lt;- h -&lt; x*z
6364         returnA -&lt; t+z
6365 </screen>
6366 You can read this much like ordinary <literal>do</literal>-notation,
6367 but with commands in place of monadic expressions.
6368 The first line sends the value of <literal>x+1</literal> as an input to
6369 the arrow <literal>f</literal>, and matches its output against
6370 <literal>y</literal>.
6371 In the next line, the output is discarded.
6372 The arrow <function>returnA</function> is defined in the
6373 <ulink url="../libraries/base/Control-Arrow.html"><literal>Control.Arrow</literal></ulink>
6374 module as <literal>arr id</literal>.
6375 The above example is treated as an abbreviation for
6376 <screen>
6377 arr (\ x -> (x, x)) >>>
6378         first (arr (\ x -> x+1) >>> f) >>>
6379         arr (\ (y, x) -> (y, (x, y))) >>>
6380         first (arr (\ y -> 2*y) >>> g) >>>
6381         arr snd >>>
6382         arr (\ (x, y) -> let z = x+y in ((x, z), z)) >>>
6383         first (arr (\ (x, z) -> x*z) >>> h) >>>
6384         arr (\ (t, z) -> t+z) >>>
6385         returnA
6386 </screen>
6387 Note that variables not used later in the composition are projected out.
6388 After simplification using rewrite rules (see <xref linkend="rewrite-rules"/>)
6389 defined in the
6390 <ulink url="../libraries/base/Control-Arrow.html"><literal>Control.Arrow</literal></ulink>
6391 module, this reduces to
6392 <screen>
6393 arr (\ x -> (x+1, x)) >>>
6394         first f >>>
6395         arr (\ (y, x) -> (2*y, (x, y))) >>>
6396         first g >>>
6397         arr (\ (_, (x, y)) -> let z = x+y in (x*z, z)) >>>
6398         first h >>>
6399         arr (\ (t, z) -> t+z)
6400 </screen>
6401 which is what you might have written by hand.
6402 With arrow notation, GHC keeps track of all those tuples of variables for you.
6403 </para>
6404
6405 <para>
6406 Note that although the above translation suggests that
6407 <literal>let</literal>-bound variables like <literal>z</literal> must be
6408 monomorphic, the actual translation produces Core,
6409 so polymorphic variables are allowed.
6410 </para>
6411
6412 <para>
6413 It's also possible to have mutually recursive bindings,
6414 using the new <literal>rec</literal> keyword, as in the following example:
6415 <programlisting>
6416 counter :: ArrowCircuit a => a Bool Int
6417 counter = proc reset -> do
6418         rec     output &lt;- returnA -&lt; if reset then 0 else next
6419                 next &lt;- delay 0 -&lt; output+1
6420         returnA -&lt; output
6421 </programlisting>
6422 The translation of such forms uses the <function>loop</function> combinator,
6423 so the arrow concerned must belong to the <literal>ArrowLoop</literal> class.
6424 </para>
6425
6426 </sect2>
6427
6428 <sect2>
6429 <title>Conditional commands</title>
6430
6431 <para>
6432 In the previous example, we used a conditional expression to construct the
6433 input for an arrow.
6434 Sometimes we want to conditionally execute different commands, as in
6435 <screen>
6436 proc (x,y) ->
6437         if f x y
6438         then g -&lt; x+1
6439         else h -&lt; y+2
6440 </screen>
6441 which is translated to
6442 <screen>
6443 arr (\ (x,y) -> if f x y then Left x else Right y) >>>
6444         (arr (\x -> x+1) >>> f) ||| (arr (\y -> y+2) >>> g)
6445 </screen>
6446 Since the translation uses <function>|||</function>,
6447 the arrow concerned must belong to the <literal>ArrowChoice</literal> class.
6448 </para>
6449
6450 <para>
6451 There are also <literal>case</literal> commands, like
6452 <screen>
6453 case input of
6454     [] -> f -&lt; ()
6455     [x] -> g -&lt; x+1
6456     x1:x2:xs -> do
6457         y &lt;- h -&lt; (x1, x2)
6458         ys &lt;- k -&lt; xs
6459         returnA -&lt; y:ys
6460 </screen>
6461 The syntax is the same as for <literal>case</literal> expressions,
6462 except that the bodies of the alternatives are commands rather than expressions.
6463 The translation is similar to that of <literal>if</literal> commands.
6464 </para>
6465
6466 </sect2>
6467
6468 <sect2>
6469 <title>Defining your own control structures</title>
6470
6471 <para>
6472 As we're seen, arrow notation provides constructs,
6473 modelled on those for expressions,
6474 for sequencing, value recursion and conditionals.
6475 But suitable combinators,
6476 which you can define in ordinary Haskell,
6477 may also be used to build new commands out of existing ones.
6478 The basic idea is that a command defines an arrow from environments to values.
6479 These environments assign values to the free local variables of the command.
6480 Thus combinators that produce arrows from arrows
6481 may also be used to build commands from commands.
6482 For example, the <literal>ArrowChoice</literal> class includes a combinator
6483 <programlisting>
6484 ArrowChoice a => (&lt;+>) :: a e c -> a e c -> a e c
6485 </programlisting>
6486 so we can use it to build commands:
6487 <programlisting>
6488 expr' = proc x -> do
6489                 returnA -&lt; x
6490         &lt;+> do
6491                 symbol Plus -&lt; ()
6492                 y &lt;- term -&lt; ()
6493                 expr' -&lt; x + y
6494         &lt;+> do
6495                 symbol Minus -&lt; ()
6496                 y &lt;- term -&lt; ()
6497                 expr' -&lt; x - y
6498 </programlisting>
6499 (The <literal>do</literal> on the first line is needed to prevent the first
6500 <literal>&lt;+> ...</literal> from being interpreted as part of the
6501 expression on the previous line.)
6502 This is equivalent to
6503 <programlisting>
6504 expr' = (proc x -> returnA -&lt; x)
6505         &lt;+> (proc x -> do
6506                 symbol Plus -&lt; ()
6507                 y &lt;- term -&lt; ()
6508                 expr' -&lt; x + y)
6509         &lt;+> (proc x -> do
6510                 symbol Minus -&lt; ()
6511                 y &lt;- term -&lt; ()
6512                 expr' -&lt; x - y)
6513 </programlisting>
6514 It is essential that this operator be polymorphic in <literal>e</literal>
6515 (representing the environment input to the command
6516 and thence to its subcommands)
6517 and satisfy the corresponding naturality property
6518 <screen>
6519 arr k >>> (f &lt;+> g) = (arr k >>> f) &lt;+> (arr k >>> g)
6520 </screen>
6521 at least for strict <literal>k</literal>.
6522 (This should be automatic if you're not using <function>seq</function>.)
6523 This ensures that environments seen by the subcommands are environments
6524 of the whole command,
6525 and also allows the translation to safely trim these environments.
6526 The operator must also not use any variable defined within the current
6527 arrow abstraction.
6528 </para>
6529
6530 <para>
6531 We could define our own operator
6532 <programlisting>
6533 untilA :: ArrowChoice a => a e () -> a e Bool -> a e ()
6534 untilA body cond = proc x ->
6535         b &lt;- cond -&lt; x
6536         if b then returnA -&lt; ()
6537         else do
6538                 body -&lt; x
6539                 untilA body cond -&lt; x
6540 </programlisting>
6541 and use it in the same way.
6542 Of course this infix syntax only makes sense for binary operators;
6543 there is also a more general syntax involving special brackets:
6544 <screen>
6545 proc x -> do
6546         y &lt;- f -&lt; x+1
6547         (|untilA (increment -&lt; x+y) (within 0.5 -&lt; x)|)
6548 </screen>
6549 </para>
6550
6551 </sect2>
6552
6553 <sect2>
6554 <title>Primitive constructs</title>
6555
6556 <para>
6557 Some operators will need to pass additional inputs to their subcommands.
6558 For example, in an arrow type supporting exceptions,
6559 the operator that attaches an exception handler will wish to pass the
6560 exception that occurred to the handler.
6561 Such an operator might have a type
6562 <screen>
6563 handleA :: ... => a e c -> a (e,Ex) c -> a e c
6564 </screen>
6565 where <literal>Ex</literal> is the type of exceptions handled.
6566 You could then use this with arrow notation by writing a command
6567 <screen>
6568 body `handleA` \ ex -> handler
6569 </screen>
6570 so that if an exception is raised in the command <literal>body</literal>,
6571 the variable <literal>ex</literal> is bound to the value of the exception
6572 and the command <literal>handler</literal>,
6573 which typically refers to <literal>ex</literal>, is entered.
6574 Though the syntax here looks like a functional lambda,
6575 we are talking about commands, and something different is going on.
6576 The input to the arrow represented by a command consists of values for
6577 the free local variables in the command, plus a stack of anonymous values.
6578 In all the prior examples, this stack was empty.
6579 In the second argument to <function>handleA</function>,
6580 this stack consists of one value, the value of the exception.
6581 The command form of lambda merely gives this value a name.
6582 </para>
6583
6584 <para>
6585 More concretely,
6586 the values on the stack are paired to the right of the environment.
6587 So operators like <function>handleA</function> that pass
6588 extra inputs to their subcommands can be designed for use with the notation
6589 by pairing the values with the environment in this way.
6590 More precisely, the type of each argument of the operator (and its result)
6591 should have the form
6592 <screen>
6593 a (...(e,t1), ... tn) t
6594 </screen>
6595 where <replaceable>e</replaceable> is a polymorphic variable
6596 (representing the environment)
6597 and <replaceable>ti</replaceable> are the types of the values on the stack,
6598 with <replaceable>t1</replaceable> being the <quote>top</quote>.
6599 The polymorphic variable <replaceable>e</replaceable> must not occur in
6600 <replaceable>a</replaceable>, <replaceable>ti</replaceable> or
6601 <replaceable>t</replaceable>.
6602 However the arrows involved need not be the same.
6603 Here are some more examples of suitable operators:
6604 <screen>
6605 bracketA :: ... => a e b -> a (e,b) c -> a (e,c) d -> a e d
6606 runReader :: ... => a e c -> a' (e,State) c
6607 runState :: ... => a e c -> a' (e,State) (c,State)
6608 </screen>
6609 We can supply the extra input required by commands built with the last two
6610 by applying them to ordinary expressions, as in
6611 <screen>
6612 proc x -> do
6613         s &lt;- ...
6614         (|runReader (do { ... })|) s
6615 </screen>
6616 which adds <literal>s</literal> to the stack of inputs to the command
6617 built using <function>runReader</function>.
6618 </para>
6619
6620 <para>
6621 The command versions of lambda abstraction and application are analogous to
6622 the expression versions.
6623 In particular, the beta and eta rules describe equivalences of commands.
6624 These three features (operators, lambda abstraction and application)
6625 are the core of the notation; everything else can be built using them,
6626 though the results would be somewhat clumsy.
6627 For example, we could simulate <literal>do</literal>-notation by defining
6628 <programlisting>
6629 bind :: Arrow a => a e b -> a (e,b) c -> a e c
6630 u `bind` f = returnA &amp;&amp;&amp; u >>> f
6631
6632 bind_ :: Arrow a => a e b -> a e c -> a e c
6633 u `bind_` f = u `bind` (arr fst >>> f)
6634 </programlisting>
6635 We could simulate <literal>if</literal> by defining
6636 <programlisting>
6637 cond :: ArrowChoice a => a e b -> a e b -> a (e,Bool) b
6638 cond f g = arr (\ (e,b) -> if b then Left e else Right e) >>> f ||| g
6639 </programlisting>
6640 </para>
6641
6642 </sect2>
6643
6644 <sect2>
6645 <title>Differences with the paper</title>
6646
6647 <itemizedlist>
6648
6649 <listitem>
6650 <para>Instead of a single form of arrow application (arrow tail) with two
6651 translations, the implementation provides two forms
6652 <quote><literal>-&lt;</literal></quote> (first-order)
6653 and <quote><literal>-&lt;&lt;</literal></quote> (higher-order).
6654 </para>
6655 </listitem>
6656
6657 <listitem>
6658 <para>User-defined operators are flagged with banana brackets instead of
6659 a new <literal>form</literal> keyword.
6660 </para>
6661 </listitem>
6662
6663 </itemizedlist>
6664
6665 </sect2>
6666
6667 <sect2>
6668 <title>Portability</title>
6669
6670 <para>
6671 Although only GHC implements arrow notation directly,
6672 there is also a preprocessor
6673 (available from the 
6674 <ulink url="http://www.haskell.org/arrows/">arrows web page</ulink>)
6675 that translates arrow notation into Haskell 98
6676 for use with other Haskell systems.
6677 You would still want to check arrow programs with GHC;
6678 tracing type errors in the preprocessor output is not easy.
6679 Modules intended for both GHC and the preprocessor must observe some
6680 additional restrictions:
6681 <itemizedlist>
6682
6683 <listitem>
6684 <para>
6685 The module must import
6686 <ulink url="../libraries/base/Control-Arrow.html"><literal>Control.Arrow</literal></ulink>.
6687 </para>
6688 </listitem>
6689
6690 <listitem>
6691 <para>
6692 The preprocessor cannot cope with other Haskell extensions.
6693 These would have to go in separate modules.
6694 </para>
6695 </listitem>
6696
6697 <listitem>
6698 <para>
6699 Because the preprocessor targets Haskell (rather than Core),
6700 <literal>let</literal>-bound variables are monomorphic.
6701 </para>
6702 </listitem>
6703
6704 </itemizedlist>
6705 </para>
6706
6707 </sect2>
6708
6709 </sect1>
6710
6711 <!-- ==================== BANG PATTERNS =================  -->
6712
6713 <sect1 id="bang-patterns">
6714 <title>Bang patterns
6715 <indexterm><primary>Bang patterns</primary></indexterm>
6716 </title>
6717 <para>GHC supports an extension of pattern matching called <emphasis>bang
6718 patterns</emphasis>, written <literal>!<replaceable>pat</replaceable></literal>.   
6719 Bang patterns are under consideration for Haskell Prime.
6720 The <ulink
6721 url="http://hackage.haskell.org/trac/haskell-prime/wiki/BangPatterns">Haskell
6722 prime feature description</ulink> contains more discussion and examples
6723 than the material below.
6724 </para>
6725 <para>
6726 The key change is the addition of a new rule to the 
6727 <ulink url="http://haskell.org/onlinereport/exps.html#sect3.17.2">semantics of pattern matching in the Haskell 98 report</ulink>.
6728 Add new bullet 10, saying: Matching the pattern <literal>!</literal><replaceable>pat</replaceable> 
6729 against a value <replaceable>v</replaceable> behaves as follows:
6730 <itemizedlist>
6731 <listitem><para>if <replaceable>v</replaceable> is bottom, the match diverges</para></listitem>
6732 <listitem><para>otherwise, <replaceable>pat</replaceable> is matched against <replaceable>v</replaceable>  </para></listitem>
6733 </itemizedlist>
6734 </para>
6735 <para>
6736 Bang patterns are enabled by the flag <option>-XBangPatterns</option>.
6737 </para>
6738
6739 <sect2 id="bang-patterns-informal">
6740 <title>Informal description of bang patterns
6741 </title>
6742 <para>
6743 The main idea is to add a single new production to the syntax of patterns:
6744 <programlisting>
6745   pat ::= !pat
6746 </programlisting>
6747 Matching an expression <literal>e</literal> against a pattern <literal>!p</literal> is done by first
6748 evaluating <literal>e</literal> (to WHNF) and then matching the result against <literal>p</literal>.
6749 Example:
6750 <programlisting>
6751 f1 !x = True
6752 </programlisting>
6753 This definition makes <literal>f1</literal> is strict in <literal>x</literal>,
6754 whereas without the bang it would be lazy.
6755 Bang patterns can be nested of course:
6756 <programlisting>
6757 f2 (!x, y) = [x,y]
6758 </programlisting>
6759 Here, <literal>f2</literal> is strict in <literal>x</literal> but not in
6760 <literal>y</literal>.  
6761 A bang only really has an effect if it precedes a variable or wild-card pattern:
6762 <programlisting>
6763 f3 !(x,y) = [x,y]
6764 f4 (x,y)  = [x,y]
6765 </programlisting>
6766 Here, <literal>f3</literal> and <literal>f4</literal> are identical; 
6767 putting a bang before a pattern that
6768 forces evaluation anyway does nothing.
6769 </para>
6770 <para>
6771 There is one (apparent) exception to this general rule that a bang only
6772 makes a difference when it precedes a variable or wild-card: a bang at the
6773 top level of a <literal>let</literal> or <literal>where</literal>
6774 binding makes the binding strict, regardless of the pattern. For example:
6775 <programlisting>
6776 let ![x,y] = e in b
6777 </programlisting>
6778 is a strict binding: operationally, it evaluates <literal>e</literal>, matches
6779 it against the pattern <literal>[x,y]</literal>, and then evaluates <literal>b</literal>.
6780 (We say "apparent" exception because the Right Way to think of it is that the bang
6781 at the top of a binding is not part of the <emphasis>pattern</emphasis>; rather it
6782 is part of the syntax of the <emphasis>binding</emphasis>.)
6783 Nested bangs in a pattern binding behave uniformly with all other forms of 
6784 pattern matching.  For example
6785 <programlisting>
6786 let (!x,[y]) = e in b
6787 </programlisting>
6788 is equivalent to this:
6789 <programlisting>
6790 let { t = case e of (x,[y]) -> x `seq` (x,y)
6791       x = fst t
6792       y = snd t }
6793 in b
6794 </programlisting>
6795 The binding is lazy, but when either <literal>x</literal> or <literal>y</literal> is
6796 evaluated by <literal>b</literal> the entire pattern is matched, including forcing the
6797 evaluation of <literal>x</literal>.
6798 </para>
6799 <para>
6800 Bang patterns work in <literal>case</literal> expressions too, of course:
6801 <programlisting>
6802 g5 x = let y = f x in body
6803 g6 x = case f x of { y -&gt; body }
6804 g7 x = case f x of { !y -&gt; body }
6805 </programlisting>
6806 The functions <literal>g5</literal> and <literal>g6</literal> mean exactly the same thing.  
6807 But <literal>g7</literal> evaluates <literal>(f x)</literal>, binds <literal>y</literal> to the
6808 result, and then evaluates <literal>body</literal>.
6809 </para>
6810 </sect2>
6811
6812
6813 <sect2 id="bang-patterns-sem">
6814 <title>Syntax and semantics
6815 </title>
6816 <para>
6817
6818 We add a single new production to the syntax of patterns:
6819 <programlisting>
6820   pat ::= !pat
6821 </programlisting>
6822 There is one problem with syntactic ambiguity.  Consider:
6823 <programlisting>
6824 f !x = 3
6825 </programlisting>
6826 Is this a definition of the infix function "<literal>(!)</literal>",
6827 or of the "<literal>f</literal>" with a bang pattern? GHC resolves this
6828 ambiguity in favour of the latter.  If you want to define
6829 <literal>(!)</literal> with bang-patterns enabled, you have to do so using
6830 prefix notation:
6831 <programlisting>
6832 (!) f x = 3
6833 </programlisting>
6834 The semantics of Haskell pattern matching is described in <ulink
6835 url="http://www.haskell.org/onlinereport/exps.html#sect3.17.2">
6836 Section 3.17.2</ulink> of the Haskell Report.  To this description add 
6837 one extra item 10, saying:
6838 <itemizedlist><listitem><para>Matching
6839 the pattern <literal>!pat</literal> against a value <literal>v</literal> behaves as follows:
6840 <itemizedlist><listitem><para>if <literal>v</literal> is bottom, the match diverges</para></listitem>
6841                 <listitem><para>otherwise, <literal>pat</literal> is matched against
6842                 <literal>v</literal></para></listitem>
6843 </itemizedlist>
6844 </para></listitem></itemizedlist>
6845 Similarly, in Figure 4 of  <ulink url="http://www.haskell.org/onlinereport/exps.html#sect3.17.3">
6846 Section 3.17.3</ulink>, add a new case (t):
6847 <programlisting>
6848 case v of { !pat -> e; _ -> e' }
6849    = v `seq` case v of { pat -> e; _ -> e' }
6850 </programlisting>
6851 </para><para>
6852 That leaves let expressions, whose translation is given in 
6853 <ulink url="http://www.haskell.org/onlinereport/exps.html#sect3.12">Section
6854 3.12</ulink>
6855 of the Haskell Report.
6856 In the translation box, first apply 
6857 the following transformation:  for each pattern <literal>pi</literal> that is of 
6858 form <literal>!qi = ei</literal>, transform it to <literal>(xi,!qi) = ((),ei)</literal>, and and replace <literal>e0</literal> 
6859 by <literal>(xi `seq` e0)</literal>.  Then, when none of the left-hand-side patterns
6860 have a bang at the top, apply the rules in the existing box.
6861 </para>
6862 <para>The effect of the let rule is to force complete matching of the pattern
6863 <literal>qi</literal> before evaluation of the body is begun.  The bang is
6864 retained in the translated form in case <literal>qi</literal> is a variable,
6865 thus:
6866 <programlisting>
6867   let !y = f x in b
6868 </programlisting>
6869
6870 </para>
6871 <para>
6872 The let-binding can be recursive.  However, it is much more common for
6873 the let-binding to be non-recursive, in which case the following law holds:
6874 <literal>(let !p = rhs in body)</literal>
6875      is equivalent to
6876 <literal>(case rhs of !p -> body)</literal>
6877 </para>
6878 <para>
6879 A pattern with a bang at the outermost level is not allowed at the top level of
6880 a module.
6881 </para>
6882 </sect2>
6883 </sect1>
6884
6885 <!-- ==================== ASSERTIONS =================  -->
6886
6887 <sect1 id="assertions">
6888 <title>Assertions
6889 <indexterm><primary>Assertions</primary></indexterm>
6890 </title>
6891
6892 <para>
6893 If you want to make use of assertions in your standard Haskell code, you
6894 could define a function like the following:
6895 </para>
6896
6897 <para>
6898
6899 <programlisting>
6900 assert :: Bool -> a -> a
6901 assert False x = error "assertion failed!"
6902 assert _     x = x
6903 </programlisting>
6904
6905 </para>
6906
6907 <para>
6908 which works, but gives you back a less than useful error message --
6909 an assertion failed, but which and where?
6910 </para>
6911
6912 <para>
6913 One way out is to define an extended <function>assert</function> function which also
6914 takes a descriptive string to include in the error message and
6915 perhaps combine this with the use of a pre-processor which inserts
6916 the source location where <function>assert</function> was used.
6917 </para>
6918
6919 <para>
6920 Ghc offers a helping hand here, doing all of this for you. For every
6921 use of <function>assert</function> in the user's source:
6922 </para>
6923
6924 <para>
6925
6926 <programlisting>
6927 kelvinToC :: Double -> Double
6928 kelvinToC k = assert (k &gt;= 0.0) (k+273.15)
6929 </programlisting>
6930
6931 </para>
6932
6933 <para>
6934 Ghc will rewrite this to also include the source location where the
6935 assertion was made,
6936 </para>
6937
6938 <para>
6939
6940 <programlisting>
6941 assert pred val ==> assertError "Main.hs|15" pred val
6942 </programlisting>
6943
6944 </para>
6945
6946 <para>
6947 The rewrite is only performed by the compiler when it spots
6948 applications of <function>Control.Exception.assert</function>, so you
6949 can still define and use your own versions of
6950 <function>assert</function>, should you so wish. If not, import
6951 <literal>Control.Exception</literal> to make use
6952 <function>assert</function> in your code.
6953 </para>
6954
6955 <para>
6956 GHC ignores assertions when optimisation is turned on with the
6957       <option>-O</option><indexterm><primary><option>-O</option></primary></indexterm> flag.  That is, expressions of the form
6958 <literal>assert pred e</literal> will be rewritten to
6959 <literal>e</literal>.  You can also disable assertions using the
6960       <option>-fignore-asserts</option>
6961       option<indexterm><primary><option>-fignore-asserts</option></primary>
6962       </indexterm>.</para>
6963
6964 <para>
6965 Assertion failures can be caught, see the documentation for the
6966 <literal>Control.Exception</literal> library for the details.
6967 </para>
6968
6969 </sect1>
6970
6971
6972 <!-- =============================== PRAGMAS ===========================  -->
6973
6974   <sect1 id="pragmas">
6975     <title>Pragmas</title>
6976
6977     <indexterm><primary>pragma</primary></indexterm>
6978
6979     <para>GHC supports several pragmas, or instructions to the
6980     compiler placed in the source code.  Pragmas don't normally affect
6981     the meaning of the program, but they might affect the efficiency
6982     of the generated code.</para>
6983
6984     <para>Pragmas all take the form
6985
6986 <literal>{-# <replaceable>word</replaceable> ... #-}</literal>  
6987
6988     where <replaceable>word</replaceable> indicates the type of
6989     pragma, and is followed optionally by information specific to that
6990     type of pragma.  Case is ignored in
6991     <replaceable>word</replaceable>.  The various values for
6992     <replaceable>word</replaceable> that GHC understands are described
6993     in the following sections; any pragma encountered with an
6994     unrecognised <replaceable>word</replaceable> is
6995     ignored. The layout rule applies in pragmas, so the closing <literal>#-}</literal>
6996     should start in a column to the right of the opening <literal>{-#</literal>. </para> 
6997
6998     <para>Certain pragmas are <emphasis>file-header pragmas</emphasis>:
6999       <itemizedlist>
7000       <listitem><para>
7001           A file-header
7002           pragma must precede the <literal>module</literal> keyword in the file.
7003           </para></listitem>
7004       <listitem><para>
7005       There can be as many file-header pragmas as you please, and they can be
7006       preceded or followed by comments.  
7007           </para></listitem>
7008       <listitem><para>
7009       File-header pragmas are read once only, before
7010       pre-processing the file (e.g. with cpp).
7011           </para></listitem>
7012       <listitem><para>
7013          The file-header pragmas are: <literal>{-# LANGUAGE #-}</literal>,
7014         <literal>{-# OPTIONS_GHC #-}</literal>, and
7015         <literal>{-# INCLUDE #-}</literal>.
7016           </para></listitem>
7017       </itemizedlist>
7018       </para>
7019
7020     <sect2 id="language-pragma">
7021       <title>LANGUAGE pragma</title>
7022
7023       <indexterm><primary>LANGUAGE</primary><secondary>pragma</secondary></indexterm>
7024       <indexterm><primary>pragma</primary><secondary>LANGUAGE</secondary></indexterm>
7025
7026       <para>The <literal>LANGUAGE</literal> pragma allows language extensions to be enabled 
7027         in a portable way.
7028         It is the intention that all Haskell compilers support the
7029         <literal>LANGUAGE</literal> pragma with the same syntax, although not
7030         all extensions are supported by all compilers, of
7031         course.  The <literal>LANGUAGE</literal> pragma should be used instead
7032         of <literal>OPTIONS_GHC</literal>, if possible.</para>
7033
7034       <para>For example, to enable the FFI and preprocessing with CPP:</para>
7035
7036 <programlisting>{-# LANGUAGE ForeignFunctionInterface, CPP #-}</programlisting>
7037
7038         <para><literal>LANGUAGE</literal> is a file-header pragma (see <xref linkend="pragmas"/>).</para>
7039
7040       <para>Every language extension can also be turned into a command-line flag
7041         by prefixing it with "<literal>-X</literal>"; for example <option>-XForeignFunctionInterface</option>.
7042         (Similarly, all "<literal>-X</literal>" flags can be written as <literal>LANGUAGE</literal> pragmas.
7043       </para>
7044
7045       <para>A list of all supported language extensions can be obtained by invoking
7046         <literal>ghc --supported-languages</literal> (see <xref linkend="modes"/>).</para>
7047
7048       <para>Any extension from the <literal>Extension</literal> type defined in
7049         <ulink
7050           url="../libraries/Cabal/Language-Haskell-Extension.html"><literal>Language.Haskell.Extension</literal></ulink>
7051         may be used.  GHC will report an error if any of the requested extensions are not supported.</para>
7052     </sect2>
7053
7054
7055     <sect2 id="options-pragma">
7056       <title>OPTIONS_GHC pragma</title>
7057       <indexterm><primary>OPTIONS_GHC</primary>
7058       </indexterm>
7059       <indexterm><primary>pragma</primary><secondary>OPTIONS_GHC</secondary>
7060       </indexterm>
7061
7062       <para>The <literal>OPTIONS_GHC</literal> pragma is used to specify
7063       additional options that are given to the compiler when compiling
7064       this source file.  See <xref linkend="source-file-options"/> for
7065       details.</para>
7066
7067       <para>Previous versions of GHC accepted <literal>OPTIONS</literal> rather
7068         than <literal>OPTIONS_GHC</literal>, but that is now deprecated.</para>
7069     </sect2>
7070
7071         <para><literal>OPTIONS_GHC</literal> is a file-header pragma (see <xref linkend="pragmas"/>).</para>
7072
7073     <sect2 id="include-pragma">
7074       <title>INCLUDE pragma</title>
7075
7076       <para>The <literal>INCLUDE</literal> pragma is for specifying the names
7077         of C header files that should be <literal>#include</literal>'d into
7078         the C source code generated by the compiler for the current module (if
7079         compiling via C).  For example:</para>
7080
7081 <programlisting>
7082 {-# INCLUDE "foo.h" #-}
7083 {-# INCLUDE &lt;stdio.h&gt; #-}</programlisting>
7084
7085         <para><literal>INCLUDE</literal> is a file-header pragma (see <xref linkend="pragmas"/>).</para>
7086
7087       <para>An <literal>INCLUDE</literal> pragma is  the preferred alternative
7088         to the <option>-#include</option> option (<xref
7089           linkend="options-C-compiler" />), because the
7090         <literal>INCLUDE</literal> pragma is understood by other
7091         compilers.  Yet another alternative is to add the include file to each
7092         <literal>foreign import</literal> declaration in your code, but we
7093         don't recommend using this approach with GHC.</para>
7094     </sect2>
7095
7096     <sect2 id="warning-deprecated-pragma">
7097       <title>WARNING and DEPRECATED pragmas</title>
7098       <indexterm><primary>WARNING</primary></indexterm>
7099       <indexterm><primary>DEPRECATED</primary></indexterm>
7100
7101       <para>The WARNING pragma allows you to attach an arbitrary warning
7102       to a particular function, class, or type.
7103       A DEPRECATED pragma lets you specify that
7104       a particular function, class, or type is deprecated.
7105       There are two ways of using these pragmas.
7106
7107       <itemizedlist>
7108         <listitem>
7109           <para>You can work on an entire module thus:</para>
7110 <programlisting>
7111    module Wibble {-# DEPRECATED "Use Wobble instead" #-} where
7112      ...
7113 </programlisting>
7114       <para>Or:</para>
7115 <programlisting>
7116    module Wibble {-# WARNING "This is an unstable interface." #-} where
7117      ...
7118 </programlisting>
7119           <para>When you compile any module that import
7120           <literal>Wibble</literal>, GHC will print the specified
7121           message.</para>
7122         </listitem>
7123
7124         <listitem>
7125           <para>You can attach a warning to a function, class, type, or data constructor, with the
7126           following top-level declarations:</para>
7127 <programlisting>
7128    {-# DEPRECATED f, C, T "Don't use these" #-}
7129    {-# WARNING unsafePerformIO "This is unsafe; I hope you know what you're doing" #-}
7130 </programlisting>
7131           <para>When you compile any module that imports and uses any
7132           of the specified entities, GHC will print the specified
7133           message.</para>
7134           <para> You can only attach to entities declared at top level in the module
7135           being compiled, and you can only use unqualified names in the list of
7136           entities. A capitalised name, such as <literal>T</literal>
7137           refers to <emphasis>either</emphasis> the type constructor <literal>T</literal>
7138           <emphasis>or</emphasis> the data constructor <literal>T</literal>, or both if
7139           both are in scope.  If both are in scope, there is currently no way to
7140       specify one without the other (c.f. fixities
7141       <xref linkend="infix-tycons"/>).</para>
7142         </listitem>
7143       </itemizedlist>
7144       Warnings and deprecations are not reported for
7145       (a) uses within the defining module, and
7146       (b) uses in an export list.
7147       The latter reduces spurious complaints within a library
7148       in which one module gathers together and re-exports 
7149       the exports of several others.
7150       </para>
7151       <para>You can suppress the warnings with the flag
7152       <option>-fno-warn-warnings-deprecations</option>.</para>
7153     </sect2>
7154
7155     <sect2 id="inline-noinline-pragma">
7156       <title>INLINE and NOINLINE pragmas</title>
7157
7158       <para>These pragmas control the inlining of function
7159       definitions.</para>
7160
7161       <sect3 id="inline-pragma">
7162         <title>INLINE pragma</title>
7163         <indexterm><primary>INLINE</primary></indexterm>
7164
7165         <para>GHC (with <option>-O</option>, as always) tries to
7166         inline (or &ldquo;unfold&rdquo;) functions/values that are
7167         &ldquo;small enough,&rdquo; thus avoiding the call overhead
7168         and possibly exposing other more-wonderful optimisations.
7169         Normally, if GHC decides a function is &ldquo;too
7170         expensive&rdquo; to inline, it will not do so, nor will it
7171         export that unfolding for other modules to use.</para>
7172
7173         <para>The sledgehammer you can bring to bear is the
7174         <literal>INLINE</literal><indexterm><primary>INLINE
7175         pragma</primary></indexterm> pragma, used thusly:</para>
7176
7177 <programlisting>
7178 key_function :: Int -> String -> (Bool, Double)
7179 {-# INLINE key_function #-}
7180 </programlisting>
7181
7182         <para>The major effect of an <literal>INLINE</literal> pragma
7183         is to declare a function's &ldquo;cost&rdquo; to be very low.
7184         The normal unfolding machinery will then be very keen to
7185         inline it.  However, an <literal>INLINE</literal> pragma for a 
7186         function "<literal>f</literal>" has a number of other effects:
7187 <itemizedlist>
7188 <listitem><para>
7189 No functions are inlined into <literal>f</literal>.  Otherwise
7190 GHC might inline a big function into <literal>f</literal>'s right hand side, 
7191 making <literal>f</literal> big; and then inline <literal>f</literal> blindly.
7192 </para></listitem>
7193 <listitem><para>
7194 The float-in, float-out, and common-sub-expression transformations are not 
7195 applied to the body of <literal>f</literal>.  
7196 </para></listitem>
7197 <listitem><para>
7198 An INLINE function is not worker/wrappered by strictness analysis.
7199 It's going to be inlined wholesale instead.
7200 </para></listitem>
7201 </itemizedlist>
7202 All of these effects are aimed at ensuring that what gets inlined is
7203 exactly what you asked for, no more and no less.
7204 </para>
7205 <para>GHC ensures that inlining cannot go on forever: every mutually-recursive
7206 group is cut by one or more <emphasis>loop breakers</emphasis> that is never inlined
7207 (see <ulink url="http://research.microsoft.com/%7Esimonpj/Papers/inlining/index.htm">
7208 Secrets of the GHC inliner, JFP 12(4) July 2002</ulink>).
7209 GHC tries not to select a function with an INLINE pragma as a loop breaker, but
7210 when there is no choice even an INLINE function can be selected, in which case
7211 the INLINE pragma is ignored.
7212 For example, for a self-recursive function, the loop breaker can only be the function
7213 itself, so an INLINE pragma is always ignored.</para>
7214
7215         <para>Syntactically, an <literal>INLINE</literal> pragma for a
7216         function can be put anywhere its type signature could be
7217         put.</para>
7218
7219         <para><literal>INLINE</literal> pragmas are a particularly
7220         good idea for the
7221         <literal>then</literal>/<literal>return</literal> (or
7222         <literal>bind</literal>/<literal>unit</literal>) functions in
7223         a monad.  For example, in GHC's own
7224         <literal>UniqueSupply</literal> monad code, we have:</para>
7225
7226 <programlisting>
7227 {-# INLINE thenUs #-}
7228 {-# INLINE returnUs #-}
7229 </programlisting>
7230
7231         <para>See also the <literal>NOINLINE</literal> pragma (<xref
7232         linkend="noinline-pragma"/>).</para>
7233
7234         <para>Note: the HBC compiler doesn't like <literal>INLINE</literal> pragmas,
7235           so if you want your code to be HBC-compatible you'll have to surround
7236           the pragma with C pre-processor directives 
7237           <literal>#ifdef __GLASGOW_HASKELL__</literal>...<literal>#endif</literal>.</para>
7238
7239       </sect3>
7240
7241       <sect3 id="noinline-pragma">
7242         <title>NOINLINE pragma</title>
7243         
7244         <indexterm><primary>NOINLINE</primary></indexterm>
7245         <indexterm><primary>NOTINLINE</primary></indexterm>
7246
7247         <para>The <literal>NOINLINE</literal> pragma does exactly what
7248         you'd expect: it stops the named function from being inlined
7249         by the compiler.  You shouldn't ever need to do this, unless
7250         you're very cautious about code size.</para>
7251
7252         <para><literal>NOTINLINE</literal> is a synonym for
7253         <literal>NOINLINE</literal> (<literal>NOINLINE</literal> is
7254         specified by Haskell 98 as the standard way to disable
7255         inlining, so it should be used if you want your code to be
7256         portable).</para>
7257       </sect3>
7258
7259       <sect3 id="phase-control">
7260         <title>Phase control</title>
7261
7262         <para> Sometimes you want to control exactly when in GHC's
7263         pipeline the INLINE pragma is switched on.  Inlining happens
7264         only during runs of the <emphasis>simplifier</emphasis>.  Each
7265         run of the simplifier has a different <emphasis>phase
7266         number</emphasis>; the phase number decreases towards zero.
7267         If you use <option>-dverbose-core2core</option> you'll see the
7268         sequence of phase numbers for successive runs of the
7269         simplifier.  In an INLINE pragma you can optionally specify a
7270         phase number, thus:
7271         <itemizedlist>
7272           <listitem>
7273             <para>"<literal>INLINE[k] f</literal>" means: do not inline
7274             <literal>f</literal>
7275               until phase <literal>k</literal>, but from phase
7276               <literal>k</literal> onwards be very keen to inline it.
7277             </para></listitem>
7278           <listitem>
7279             <para>"<literal>INLINE[~k] f</literal>" means: be very keen to inline
7280             <literal>f</literal>
7281               until phase <literal>k</literal>, but from phase
7282               <literal>k</literal> onwards do not inline it.
7283             </para></listitem>
7284           <listitem>
7285             <para>"<literal>NOINLINE[k] f</literal>" means: do not inline
7286             <literal>f</literal>
7287               until phase <literal>k</literal>, but from phase
7288               <literal>k</literal> onwards be willing to inline it (as if
7289               there was no pragma).
7290             </para></listitem>
7291             <listitem>
7292             <para>"<literal>NOINLINE[~k] f</literal>" means: be willing to inline
7293             <literal>f</literal>
7294               until phase <literal>k</literal>, but from phase
7295               <literal>k</literal> onwards do not inline it.
7296             </para></listitem>
7297         </itemizedlist>
7298 The same information is summarised here:
7299 <programlisting>
7300                            -- Before phase 2     Phase 2 and later
7301   {-# INLINE   [2]  f #-}  --      No                 Yes
7302   {-# INLINE   [~2] f #-}  --      Yes                No
7303   {-# NOINLINE [2]  f #-}  --      No                 Maybe
7304   {-# NOINLINE [~2] f #-}  --      Maybe              No
7305
7306   {-# INLINE   f #-}       --      Yes                Yes
7307   {-# NOINLINE f #-}       --      No                 No
7308 </programlisting>
7309 By "Maybe" we mean that the usual heuristic inlining rules apply (if the
7310 function body is small, or it is applied to interesting-looking arguments etc).
7311 Another way to understand the semantics is this:
7312 <itemizedlist>
7313 <listitem><para>For both INLINE and NOINLINE, the phase number says
7314 when inlining is allowed at all.</para></listitem>
7315 <listitem><para>The INLINE pragma has the additional effect of making the
7316 function body look small, so that when inlining is allowed it is very likely to
7317 happen.
7318 </para></listitem>
7319 </itemizedlist>
7320 </para>
7321 <para>The same phase-numbering control is available for RULES
7322         (<xref linkend="rewrite-rules"/>).</para>
7323       </sect3>
7324     </sect2>
7325
7326     <sect2 id="annotation-pragmas">
7327       <title>ANN pragmas</title>
7328       
7329       <para>GHC offers the ability to annotate various code constructs with additional
7330       data by using three pragmas.  This data can then be inspected at a later date by
7331       using GHC-as-a-library.</para>
7332             
7333       <sect3 id="ann-pragma">
7334         <title>Annotating values</title>
7335         
7336         <indexterm><primary>ANN</primary></indexterm>
7337         
7338         <para>Any expression that has both <literal>Typeable</literal> and <literal>Data</literal> instances may be attached to a top-level value
7339         binding using an <literal>ANN</literal> pragma. In particular, this means you can use <literal>ANN</literal>
7340         to annotate data constructors (e.g. <literal>Just</literal>) as well as normal values (e.g. <literal>take</literal>).
7341         By way of example, to annotate the function <literal>foo</literal> with the annotation <literal>Just "Hello"</literal>
7342         you would do this:</para>
7343         
7344 <programlisting>
7345 {-# ANN foo (Just "Hello") #-}
7346 foo = ...
7347 </programlisting>
7348         
7349         <para>
7350           A number of restrictions apply to use of annotations:
7351           <itemizedlist>
7352             <listitem><para>The binder being annotated must be at the top level (i.e. no nested binders)</para></listitem>
7353             <listitem><para>The binder being annotated must be declared in the current module</para></listitem>
7354             <listitem><para>The expression you are annotating with must have a type with <literal>Typeable</literal> and <literal>Data</literal> instances</para></listitem>
7355             <listitem><para>The <ulink linkend="using-template-haskell">Template Haskell staging restrictions</ulink> apply to the
7356             expression being annotated with, so for example you cannot run a function from the module being compiled.</para>
7357             
7358             <para>To be precise, the annotation <literal>{-# ANN x e #-}</literal> is well staged if and only if <literal>$(e)</literal> would be 
7359             (disregarding the usual type restrictions of the splice syntax, and the usual restriction on splicing inside a splice - <literal>$([|1|])</literal> is fine as an annotation, albeit redundant).</para></listitem>
7360           </itemizedlist>
7361           
7362           If you feel strongly that any of these restrictions are too onerous, <ulink url="http://hackage.haskell.org/trac/ghc/wiki/MailingListsAndIRC">
7363           please give the GHC team a shout</ulink>.
7364         </para>
7365         
7366         <para>However, apart from these restrictions, many things are allowed, including expressions which are not fully evaluated!
7367         Annotation expressions will be evaluated by the compiler just like Template Haskell splices are. So, this annotation is fine:</para>
7368         
7369 <programlisting>
7370 {-# ANN f SillyAnnotation { foo = (id 10) + $([| 20 |]), bar = 'f } #-}
7371 f = ...
7372 </programlisting>
7373       </sect3>
7374       
7375       <sect3 id="typeann-pragma">
7376         <title>Annotating types</title>
7377         
7378         <indexterm><primary>ANN type</primary></indexterm>
7379         <indexterm><primary>ANN</primary></indexterm>
7380         
7381         <para>You can annotate types with the <literal>ANN</literal> pragma by using the <literal>type</literal> keyword. For example:</para>
7382         
7383 <programlisting>
7384 {-# ANN type Foo (Just "A `Maybe String' annotation") #-}
7385 data Foo = ...
7386 </programlisting>
7387       </sect3>
7388       
7389       <sect3 id="modann-pragma">
7390         <title>Annotating modules</title>
7391         
7392         <indexterm><primary>ANN module</primary></indexterm>
7393         <indexterm><primary>ANN</primary></indexterm>
7394         
7395         <para>You can annotate modules with the <literal>ANN</literal> pragma by using the <literal>module</literal> keyword. For example:</para>
7396         
7397 <programlisting>
7398 {-# ANN module (Just "A `Maybe String' annotation") #-}
7399 </programlisting>
7400       </sect3>
7401     </sect2>
7402
7403     <sect2 id="line-pragma">
7404       <title>LINE pragma</title>
7405
7406       <indexterm><primary>LINE</primary><secondary>pragma</secondary></indexterm>
7407       <indexterm><primary>pragma</primary><secondary>LINE</secondary></indexterm>
7408       <para>This pragma is similar to C's <literal>&num;line</literal>
7409       pragma, and is mainly for use in automatically generated Haskell
7410       code.  It lets you specify the line number and filename of the
7411       original code; for example</para>
7412
7413 <programlisting>{-# LINE 42 "Foo.vhs" #-}</programlisting>
7414
7415       <para>if you'd generated the current file from something called
7416       <filename>Foo.vhs</filename> and this line corresponds to line
7417       42 in the original.  GHC will adjust its error messages to refer
7418       to the line/file named in the <literal>LINE</literal>
7419       pragma.</para>
7420     </sect2>
7421
7422     <sect2 id="rules">
7423       <title>RULES pragma</title>
7424
7425       <para>The RULES pragma lets you specify rewrite rules.  It is
7426       described in <xref linkend="rewrite-rules"/>.</para>
7427     </sect2>
7428
7429     <sect2 id="specialize-pragma">
7430       <title>SPECIALIZE pragma</title>
7431
7432       <indexterm><primary>SPECIALIZE pragma</primary></indexterm>
7433       <indexterm><primary>pragma, SPECIALIZE</primary></indexterm>
7434       <indexterm><primary>overloading, death to</primary></indexterm>
7435
7436       <para>(UK spelling also accepted.)  For key overloaded
7437       functions, you can create extra versions (NB: more code space)
7438       specialised to particular types.  Thus, if you have an
7439       overloaded function:</para>
7440
7441 <programlisting>
7442   hammeredLookup :: Ord key => [(key, value)] -> key -> value
7443 </programlisting>
7444
7445       <para>If it is heavily used on lists with
7446       <literal>Widget</literal> keys, you could specialise it as
7447       follows:</para>
7448
7449 <programlisting>
7450   {-# SPECIALIZE hammeredLookup :: [(Widget, value)] -> Widget -> value #-}
7451 </programlisting>
7452
7453       <para>A <literal>SPECIALIZE</literal> pragma for a function can
7454       be put anywhere its type signature could be put.</para>
7455
7456       <para>A <literal>SPECIALIZE</literal> has the effect of generating
7457       (a) a specialised version of the function and (b) a rewrite rule
7458       (see <xref linkend="rewrite-rules"/>) that rewrites a call to the
7459       un-specialised function into a call to the specialised one.</para>
7460
7461       <para>The type in a SPECIALIZE pragma can be any type that is less
7462         polymorphic than the type of the original function.  In concrete terms,
7463         if the original function is <literal>f</literal> then the pragma
7464 <programlisting>
7465   {-# SPECIALIZE f :: &lt;type&gt; #-}
7466 </programlisting>
7467       is valid if and only if the definition
7468 <programlisting>
7469   f_spec :: &lt;type&gt;
7470   f_spec = f
7471 </programlisting>
7472       is valid.  Here are some examples (where we only give the type signature
7473       for the original function, not its code):
7474 <programlisting>
7475   f :: Eq a => a -> b -> b
7476   {-# SPECIALISE f :: Int -> b -> b #-}
7477
7478   g :: (Eq a, Ix b) => a -> b -> b
7479   {-# SPECIALISE g :: (Eq a) => a -> Int -> Int #-}
7480
7481   h :: Eq a => a -> a -> a
7482   {-# SPECIALISE h :: (Eq a) => [a] -> [a] -> [a] #-}
7483 </programlisting>
7484 The last of these examples will generate a 
7485 RULE with a somewhat-complex left-hand side (try it yourself), so it might not fire very
7486 well.  If you use this kind of specialisation, let us know how well it works.
7487 </para>
7488
7489 <para>A <literal>SPECIALIZE</literal> pragma can optionally be followed with a
7490 <literal>INLINE</literal> or <literal>NOINLINE</literal> pragma, optionally 
7491 followed by a phase, as described in <xref linkend="inline-noinline-pragma"/>.
7492 The <literal>INLINE</literal> pragma affects the specialised version of the
7493 function (only), and applies even if the function is recursive.  The motivating
7494 example is this:
7495 <programlisting>
7496 -- A GADT for arrays with type-indexed representation
7497 data Arr e where
7498   ArrInt :: !Int -> ByteArray# -> Arr Int
7499   ArrPair :: !Int -> Arr e1 -> Arr e2 -> Arr (e1, e2)
7500
7501 (!:) :: Arr e -> Int -> e
7502 {-# SPECIALISE INLINE (!:) :: Arr Int -> Int -> Int #-}
7503 {-# SPECIALISE INLINE (!:) :: Arr (a, b) -> Int -> (a, b) #-}
7504 (ArrInt _ ba)     !: (I# i) = I# (indexIntArray# ba i)
7505 (ArrPair _ a1 a2) !: i      = (a1 !: i, a2 !: i)
7506 </programlisting>
7507 Here, <literal>(!:)</literal> is a recursive function that indexes arrays
7508 of type <literal>Arr e</literal>.  Consider a call to  <literal>(!:)</literal>
7509 at type <literal>(Int,Int)</literal>.  The second specialisation will fire, and
7510 the specialised function will be inlined.  It has two calls to
7511 <literal>(!:)</literal>,
7512 both at type <literal>Int</literal>.  Both these calls fire the first
7513 specialisation, whose body is also inlined.  The result is a type-based
7514 unrolling of the indexing function.</para>
7515 <para>Warning: you can make GHC diverge by using <literal>SPECIALISE INLINE</literal>
7516 on an ordinarily-recursive function.</para>
7517
7518       <para>Note: In earlier versions of GHC, it was possible to provide your own
7519       specialised function for a given type:
7520
7521 <programlisting>
7522 {-# SPECIALIZE hammeredLookup :: [(Int, value)] -> Int -> value = intLookup #-}
7523 </programlisting>
7524
7525       This feature has been removed, as it is now subsumed by the
7526       <literal>RULES</literal> pragma (see <xref linkend="rule-spec"/>).</para>
7527
7528     </sect2>
7529
7530 <sect2 id="specialize-instance-pragma">
7531 <title>SPECIALIZE instance pragma
7532 </title>
7533
7534 <para>
7535 <indexterm><primary>SPECIALIZE pragma</primary></indexterm>
7536 <indexterm><primary>overloading, death to</primary></indexterm>
7537 Same idea, except for instance declarations.  For example:
7538
7539 <programlisting>
7540 instance (Eq a) => Eq (Foo a) where { 
7541    {-# SPECIALIZE instance Eq (Foo [(Int, Bar)]) #-}
7542    ... usual stuff ...
7543  }
7544 </programlisting>
7545 The pragma must occur inside the <literal>where</literal> part
7546 of the instance declaration.
7547 </para>
7548 <para>
7549 Compatible with HBC, by the way, except perhaps in the placement
7550 of the pragma.
7551 </para>
7552
7553 </sect2>
7554
7555     <sect2 id="unpack-pragma">
7556       <title>UNPACK pragma</title>
7557
7558       <indexterm><primary>UNPACK</primary></indexterm>
7559       
7560       <para>The <literal>UNPACK</literal> indicates to the compiler
7561       that it should unpack the contents of a constructor field into
7562       the constructor itself, removing a level of indirection.  For
7563       example:</para>
7564
7565 <programlisting>
7566 data T = T {-# UNPACK #-} !Float
7567            {-# UNPACK #-} !Float
7568 </programlisting>
7569
7570       <para>will create a constructor <literal>T</literal> containing
7571       two unboxed floats.  This may not always be an optimisation: if
7572       the <function>T</function> constructor is scrutinised and the
7573       floats passed to a non-strict function for example, they will
7574       have to be reboxed (this is done automatically by the
7575       compiler).</para>
7576
7577       <para>Unpacking constructor fields should only be used in
7578       conjunction with <option>-O</option>, in order to expose
7579       unfoldings to the compiler so the reboxing can be removed as
7580       often as possible.  For example:</para>
7581
7582 <programlisting>
7583 f :: T -&#62; Float
7584 f (T f1 f2) = f1 + f2
7585 </programlisting>
7586
7587       <para>The compiler will avoid reboxing <function>f1</function>
7588       and <function>f2</function> by inlining <function>+</function>
7589       on floats, but only when <option>-O</option> is on.</para>
7590
7591       <para>Any single-constructor data is eligible for unpacking; for
7592       example</para>
7593
7594 <programlisting>
7595 data T = T {-# UNPACK #-} !(Int,Int)
7596 </programlisting>
7597
7598       <para>will store the two <literal>Int</literal>s directly in the
7599       <function>T</function> constructor, by flattening the pair.
7600       Multi-level unpacking is also supported:
7601
7602 <programlisting>
7603 data T = T {-# UNPACK #-} !S
7604 data S = S {-# UNPACK #-} !Int {-# UNPACK #-} !Int
7605 </programlisting>
7606
7607       will store two unboxed <literal>Int&num;</literal>s
7608       directly in the <function>T</function> constructor.  The
7609       unpacker can see through newtypes, too.</para>
7610
7611       <para>If a field cannot be unpacked, you will not get a warning,
7612       so it might be an idea to check the generated code with
7613       <option>-ddump-simpl</option>.</para>
7614
7615       <para>See also the <option>-funbox-strict-fields</option> flag,
7616       which essentially has the effect of adding
7617       <literal>{-#&nbsp;UNPACK&nbsp;#-}</literal> to every strict
7618       constructor field.</para>
7619     </sect2>
7620
7621     <sect2 id="source-pragma">
7622       <title>SOURCE pragma</title>
7623
7624       <indexterm><primary>SOURCE</primary></indexterm>
7625      <para>The <literal>{-# SOURCE #-}</literal> pragma is used only in <literal>import</literal> declarations,
7626      to break a module loop.  It is described in detail in <xref linkend="mutual-recursion"/>.
7627      </para>
7628 </sect2>
7629
7630 </sect1>
7631
7632 <!--  ======================= REWRITE RULES ======================== -->
7633
7634 <sect1 id="rewrite-rules">
7635 <title>Rewrite rules
7636
7637 <indexterm><primary>RULES pragma</primary></indexterm>
7638 <indexterm><primary>pragma, RULES</primary></indexterm>
7639 <indexterm><primary>rewrite rules</primary></indexterm></title>
7640
7641 <para>
7642 The programmer can specify rewrite rules as part of the source program
7643 (in a pragma).  
7644 Here is an example:
7645
7646 <programlisting>
7647   {-# RULES
7648   "map/map"    forall f g xs.  map f (map g xs) = map (f.g) xs
7649     #-}
7650 </programlisting>
7651 </para>
7652 <para>
7653 Use the debug flag <option>-ddump-simpl-stats</option> to see what rules fired.
7654 If you need more information, then <option>-ddump-rule-firings</option> shows you
7655 each individual rule firing in detail.
7656 </para>
7657
7658 <sect2>
7659 <title>Syntax</title>
7660
7661 <para>
7662 From a syntactic point of view:
7663
7664 <itemizedlist>
7665
7666 <listitem>
7667 <para>
7668  There may be zero or more rules in a <literal>RULES</literal> pragma, separated by semicolons (which
7669  may be generated by the layout rule).
7670 </para>
7671 </listitem>
7672
7673 <listitem>
7674 <para>
7675 The layout rule applies in a pragma.
7676 Currently no new indentation level
7677 is set, so if you put several rules in single RULES pragma and wish to use layout to separate them,
7678 you must lay out the starting in the same column as the enclosing definitions.
7679 <programlisting>
7680   {-# RULES
7681   "map/map"    forall f g xs.  map f (map g xs) = map (f.g) xs
7682   "map/append" forall f xs ys. map f (xs ++ ys) = map f xs ++ map f ys
7683     #-}
7684 </programlisting>
7685 Furthermore, the closing <literal>#-}</literal>
7686 should start in a column to the right of the opening <literal>{-#</literal>.
7687 </para>
7688 </listitem>
7689
7690 <listitem>
7691 <para>
7692  Each rule has a name, enclosed in double quotes.  The name itself has
7693 no significance at all.  It is only used when reporting how many times the rule fired.
7694 </para>
7695 </listitem>
7696
7697 <listitem>
7698 <para>
7699 A rule may optionally have a phase-control number (see <xref linkend="phase-control"/>),
7700 immediately after the name of the rule.  Thus:
7701 <programlisting>
7702   {-# RULES
7703         "map/map" [2]  forall f g xs. map f (map g xs) = map (f.g) xs
7704     #-}
7705 </programlisting>
7706 The "[2]" means that the rule is active in Phase 2 and subsequent phases.  The inverse
7707 notation "[~2]" is also accepted, meaning that the rule is active up to, but not including,
7708 Phase 2.
7709 </para>
7710 </listitem>
7711
7712
7713
7714 <listitem>
7715 <para>
7716  Each variable mentioned in a rule must either be in scope (e.g. <function>map</function>),
7717 or bound by the <literal>forall</literal> (e.g. <function>f</function>, <function>g</function>, <function>xs</function>).  The variables bound by
7718 the <literal>forall</literal> are called the <emphasis>pattern</emphasis> variables.  They are separated
7719 by spaces, just like in a type <literal>forall</literal>.
7720 </para>
7721 </listitem>
7722 <listitem>
7723
7724 <para>
7725  A pattern variable may optionally have a type signature.
7726 If the type of the pattern variable is polymorphic, it <emphasis>must</emphasis> have a type signature.
7727 For example, here is the <literal>foldr/build</literal> rule:
7728
7729 <programlisting>
7730 "fold/build"  forall k z (g::forall b. (a->b->b) -> b -> b) .
7731               foldr k z (build g) = g k z
7732 </programlisting>
7733
7734 Since <function>g</function> has a polymorphic type, it must have a type signature.
7735
7736 </para>
7737 </listitem>
7738 <listitem>
7739
7740 <para>
7741 The left hand side of a rule must consist of a top-level variable applied
7742 to arbitrary expressions.  For example, this is <emphasis>not</emphasis> OK:
7743
7744 <programlisting>
7745 "wrong1"   forall e1 e2.  case True of { True -> e1; False -> e2 } = e1
7746 "wrong2"   forall f.      f True = True
7747 </programlisting>
7748
7749 In <literal>"wrong1"</literal>, the LHS is not an application; in <literal>"wrong2"</literal>, the LHS has a pattern variable
7750 in the head.
7751 </para>
7752 </listitem>
7753 <listitem>
7754
7755 <para>
7756  A rule does not need to be in the same module as (any of) the
7757 variables it mentions, though of course they need to be in scope.
7758 </para>
7759 </listitem>
7760 <listitem>
7761
7762 <para>
7763  All rules are implicitly exported from the module, and are therefore
7764 in force in any module that imports the module that defined the rule, directly
7765 or indirectly.  (That is, if A imports B, which imports C, then C's rules are
7766 in force when compiling A.)  The situation is very similar to that for instance
7767 declarations.
7768 </para>
7769 </listitem>
7770
7771 <listitem>
7772
7773 <para>
7774 Inside a RULE "<literal>forall</literal>" is treated as a keyword, regardless of
7775 any other flag settings.  Furthermore, inside a RULE, the language extension
7776 <option>-XScopedTypeVariables</option> is automatically enabled; see 
7777 <xref linkend="scoped-type-variables"/>.
7778 </para>
7779 </listitem>
7780 <listitem>
7781
7782 <para>
7783 Like other pragmas, RULE pragmas are always checked for scope errors, and
7784 are typechecked. Typechecking means that the LHS and RHS of a rule are typechecked, 
7785 and must have the same type.  However, rules are only <emphasis>enabled</emphasis>
7786 if the <option>-fenable-rewrite-rules</option> flag is 
7787 on (see <xref linkend="rule-semantics"/>).
7788 </para>
7789 </listitem>
7790 </itemizedlist>
7791
7792 </para>
7793
7794 </sect2>
7795
7796 <sect2 id="rule-semantics">
7797 <title>Semantics</title>
7798
7799 <para>
7800 From a semantic point of view:
7801
7802 <itemizedlist>
7803 <listitem>
7804 <para>
7805 Rules are enabled (that is, used during optimisation)
7806 by the <option>-fenable-rewrite-rules</option> flag.
7807 This flag is implied by <option>-O</option>, and may be switched
7808 off (as usual) by <option>-fno-enable-rewrite-rules</option>.
7809 (NB: enabling <option>-fenable-rewrite-rules</option> without <option>-O</option> 
7810 may not do what you expect, though, because without <option>-O</option> GHC 
7811 ignores all optimisation information in interface files;
7812 see <option>-fignore-interface-pragmas</option>, <xref linkend="options-f"/>.)
7813 Note that <option>-fenable-rewrite-rules</option> is an <emphasis>optimisation</emphasis> flag, and
7814 has no effect on parsing or typechecking.
7815 </para>
7816 </listitem>
7817
7818 <listitem>
7819 <para>
7820  Rules are regarded as left-to-right rewrite rules.
7821 When GHC finds an expression that is a substitution instance of the LHS
7822 of a rule, it replaces the expression by the (appropriately-substituted) RHS.
7823 By "a substitution instance" we mean that the LHS can be made equal to the
7824 expression by substituting for the pattern variables.
7825
7826 </para>
7827 </listitem>
7828 <listitem>
7829
7830 <para>
7831  GHC makes absolutely no attempt to verify that the LHS and RHS
7832 of a rule have the same meaning.  That is undecidable in general, and
7833 infeasible in most interesting cases.  The responsibility is entirely the programmer's!
7834
7835 </para>
7836 </listitem>
7837 <listitem>
7838
7839 <para>
7840  GHC makes no attempt to make sure that the rules are confluent or
7841 terminating.  For example:
7842
7843 <programlisting>
7844   "loop"        forall x y.  f x y = f y x
7845 </programlisting>
7846
7847 This rule will cause the compiler to go into an infinite loop.
7848
7849 </para>
7850 </listitem>
7851 <listitem>
7852
7853 <para>
7854  If more than one rule matches a call, GHC will choose one arbitrarily to apply.
7855
7856 </para>
7857 </listitem>
7858 <listitem>
7859 <para>
7860  GHC currently uses a very simple, syntactic, matching algorithm
7861 for matching a rule LHS with an expression.  It seeks a substitution
7862 which makes the LHS and expression syntactically equal modulo alpha
7863 conversion.  The pattern (rule), but not the expression, is eta-expanded if
7864 necessary.  (Eta-expanding the expression can lead to laziness bugs.)
7865 But not beta conversion (that's called higher-order matching).
7866 </para>
7867
7868 <para>
7869 Matching is carried out on GHC's intermediate language, which includes
7870 type abstractions and applications.  So a rule only matches if the
7871 types match too.  See <xref linkend="rule-spec"/> below.
7872 </para>
7873 </listitem>
7874 <listitem>
7875
7876 <para>
7877  GHC keeps trying to apply the rules as it optimises the program.
7878 For example, consider:
7879
7880 <programlisting>
7881   let s = map f
7882       t = map g
7883   in
7884   s (t xs)
7885 </programlisting>
7886
7887 The expression <literal>s (t xs)</literal> does not match the rule <literal>"map/map"</literal>, but GHC
7888 will substitute for <varname>s</varname> and <varname>t</varname>, giving an expression which does match.
7889 If <varname>s</varname> or <varname>t</varname> was (a) used more than once, and (b) large or a redex, then it would
7890 not be substituted, and the rule would not fire.
7891
7892 </para>
7893 </listitem>
7894 <listitem>
7895
7896 <para>
7897 Ordinary inlining happens at the same time as rule rewriting, which may lead to unexpected
7898 results.  Consider this (artificial) example
7899 <programlisting>
7900 f x = x
7901 {-# RULES "f" f True = False #-}
7902
7903 g y = f y
7904
7905 h z = g True
7906 </programlisting>
7907 Since <literal>f</literal>'s right-hand side is small, it is inlined into <literal>g</literal>,
7908 to give
7909 <programlisting>
7910 g y = y
7911 </programlisting>
7912 Now <literal>g</literal> is inlined into <literal>h</literal>, but <literal>f</literal>'s RULE has
7913 no chance to fire.  
7914 If instead GHC had first inlined <literal>g</literal> into <literal>h</literal> then there
7915 would have been a better chance that <literal>f</literal>'s RULE might fire.  
7916 </para>
7917 <para>
7918 The way to get predictable behaviour is to use a NOINLINE 
7919 pragma on <literal>f</literal>, to ensure
7920 that it is not inlined until its RULEs have had a chance to fire.
7921 </para>
7922 </listitem>
7923 </itemizedlist>
7924
7925 </para>
7926
7927 </sect2>
7928
7929 <sect2>
7930 <title>List fusion</title>
7931
7932 <para>
7933 The RULES mechanism is used to implement fusion (deforestation) of common list functions.
7934 If a "good consumer" consumes an intermediate list constructed by a "good producer", the
7935 intermediate list should be eliminated entirely.
7936 </para>
7937
7938 <para>
7939 The following are good producers:
7940
7941 <itemizedlist>
7942 <listitem>
7943
7944 <para>
7945  List comprehensions
7946 </para>
7947 </listitem>
7948 <listitem>
7949
7950 <para>
7951  Enumerations of <literal>Int</literal> and <literal>Char</literal> (e.g. <literal>['a'..'z']</literal>).
7952 </para>
7953 </listitem>
7954 <listitem>
7955
7956 <para>
7957  Explicit lists (e.g. <literal>[True, False]</literal>)
7958 </para>
7959 </listitem>
7960 <listitem>
7961
7962 <para>
7963  The cons constructor (e.g <literal>3:4:[]</literal>)
7964 </para>
7965 </listitem>
7966 <listitem>
7967
7968 <para>
7969  <function>++</function>
7970 </para>
7971 </listitem>
7972
7973 <listitem>
7974 <para>
7975  <function>map</function>
7976 </para>
7977 </listitem>
7978
7979 <listitem>
7980 <para>
7981 <function>take</function>, <function>filter</function>
7982 </para>
7983 </listitem>
7984 <listitem>
7985
7986 <para>
7987  <function>iterate</function>, <function>repeat</function>
7988 </para>
7989 </listitem>
7990 <listitem>
7991
7992 <para>
7993  <function>zip</function>, <function>zipWith</function>
7994 </para>
7995 </listitem>
7996
7997 </itemizedlist>
7998
7999 </para>
8000
8001 <para>
8002 The following are good consumers:
8003
8004 <itemizedlist>
8005 <listitem>
8006
8007 <para>
8008  List comprehensions
8009 </para>
8010 </listitem>
8011 <listitem>
8012
8013 <para>
8014  <function>array</function> (on its second argument)
8015 </para>
8016 </listitem>
8017 <listitem>
8018
8019 <para>
8020  <function>++</function> (on its first argument)
8021 </para>
8022 </listitem>
8023
8024 <listitem>
8025 <para>
8026  <function>foldr</function>
8027 </para>
8028 </listitem>
8029
8030 <listitem>
8031 <para>
8032  <function>map</function>
8033 </para>
8034 </listitem>
8035 <listitem>
8036
8037 <para>
8038 <function>take</function>, <function>filter</function>
8039 </para>
8040 </listitem>
8041 <listitem>
8042
8043 <para>
8044  <function>concat</function>
8045 </para>
8046 </listitem>
8047 <listitem>
8048
8049 <para>
8050  <function>unzip</function>, <function>unzip2</function>, <function>unzip3</function>, <function>unzip4</function>
8051 </para>
8052 </listitem>
8053 <listitem>
8054
8055 <para>
8056  <function>zip</function>, <function>zipWith</function> (but on one argument only; if both are good producers, <function>zip</function>
8057 will fuse with one but not the other)
8058 </para>
8059 </listitem>
8060 <listitem>
8061
8062 <para>
8063  <function>partition</function>
8064 </para>
8065 </listitem>
8066 <listitem>
8067
8068 <para>
8069  <function>head</function>
8070 </para>
8071 </listitem>
8072 <listitem>
8073
8074 <para>
8075  <function>and</function>, <function>or</function>, <function>any</function>, <function>all</function>
8076 </para>
8077 </listitem>
8078 <listitem>
8079
8080 <para>
8081  <function>sequence&lowbar;</function>
8082 </para>
8083 </listitem>
8084 <listitem>
8085
8086 <para>
8087  <function>msum</function>
8088 </para>
8089 </listitem>
8090 <listitem>
8091
8092 <para>
8093  <function>sortBy</function>
8094 </para>
8095 </listitem>
8096
8097 </itemizedlist>
8098
8099 </para>
8100
8101  <para>
8102 So, for example, the following should generate no intermediate lists:
8103
8104 <programlisting>
8105 array (1,10) [(i,i*i) | i &#60;- map (+ 1) [0..9]]
8106 </programlisting>
8107
8108 </para>
8109
8110 <para>
8111 This list could readily be extended; if there are Prelude functions that you use
8112 a lot which are not included, please tell us.
8113 </para>
8114
8115 <para>
8116 If you want to write your own good consumers or producers, look at the
8117 Prelude definitions of the above functions to see how to do so.
8118 </para>
8119
8120 </sect2>
8121
8122 <sect2 id="rule-spec">
8123 <title>Specialisation
8124 </title>
8125
8126 <para>
8127 Rewrite rules can be used to get the same effect as a feature
8128 present in earlier versions of GHC.
8129 For example, suppose that:
8130
8131 <programlisting>
8132 genericLookup :: Ord a => Table a b   -> a   -> b
8133 intLookup     ::          Table Int b -> Int -> b
8134 </programlisting>
8135
8136 where <function>intLookup</function> is an implementation of
8137 <function>genericLookup</function> that works very fast for
8138 keys of type <literal>Int</literal>.  You might wish
8139 to tell GHC to use <function>intLookup</function> instead of
8140 <function>genericLookup</function> whenever the latter was called with
8141 type <literal>Table Int b -&gt; Int -&gt; b</literal>.
8142 It used to be possible to write
8143
8144 <programlisting>
8145 {-# SPECIALIZE genericLookup :: Table Int b -> Int -> b = intLookup #-}
8146 </programlisting>
8147
8148 This feature is no longer in GHC, but rewrite rules let you do the same thing:
8149
8150 <programlisting>
8151 {-# RULES "genericLookup/Int" genericLookup = intLookup #-}
8152 </programlisting>
8153
8154 This slightly odd-looking rule instructs GHC to replace
8155 <function>genericLookup</function> by <function>intLookup</function>
8156 <emphasis>whenever the types match</emphasis>.
8157 What is more, this rule does not need to be in the same
8158 file as <function>genericLookup</function>, unlike the
8159 <literal>SPECIALIZE</literal> pragmas which currently do (so that they
8160 have an original definition available to specialise).
8161 </para>
8162
8163 <para>It is <emphasis>Your Responsibility</emphasis> to make sure that
8164 <function>intLookup</function> really behaves as a specialised version
8165 of <function>genericLookup</function>!!!</para>
8166
8167 <para>An example in which using <literal>RULES</literal> for
8168 specialisation will Win Big:
8169
8170 <programlisting>
8171 toDouble :: Real a => a -> Double
8172 toDouble = fromRational . toRational
8173
8174 {-# RULES "toDouble/Int" toDouble = i2d #-}
8175 i2d (I# i) = D# (int2Double# i) -- uses Glasgow prim-op directly
8176 </programlisting>
8177
8178 The <function>i2d</function> function is virtually one machine
8179 instruction; the default conversion&mdash;via an intermediate
8180 <literal>Rational</literal>&mdash;is obscenely expensive by
8181 comparison.
8182 </para>
8183
8184 </sect2>
8185
8186 <sect2>
8187 <title>Controlling what's going on</title>
8188
8189 <para>
8190
8191 <itemizedlist>
8192 <listitem>
8193
8194 <para>
8195  Use <option>-ddump-rules</option> to see what transformation rules GHC is using.
8196 </para>
8197 </listitem>
8198 <listitem>
8199
8200 <para>
8201  Use <option>-ddump-simpl-stats</option> to see what rules are being fired.
8202 If you add <option>-dppr-debug</option> you get a more detailed listing.
8203 </para>
8204 </listitem>
8205 <listitem>
8206
8207 <para>
8208  The definition of (say) <function>build</function> in <filename>GHC/Base.lhs</filename> looks like this:
8209
8210 <programlisting>
8211         build   :: forall a. (forall b. (a -> b -> b) -> b -> b) -> [a]
8212         {-# INLINE build #-}
8213         build g = g (:) []
8214 </programlisting>
8215
8216 Notice the <literal>INLINE</literal>!  That prevents <literal>(:)</literal> from being inlined when compiling
8217 <literal>PrelBase</literal>, so that an importing module will &ldquo;see&rdquo; the <literal>(:)</literal>, and can
8218 match it on the LHS of a rule.  <literal>INLINE</literal> prevents any inlining happening
8219 in the RHS of the <literal>INLINE</literal> thing.  I regret the delicacy of this.
8220
8221 </para>
8222 </listitem>
8223 <listitem>
8224
8225 <para>
8226  In <filename>libraries/base/GHC/Base.lhs</filename> look at the rules for <function>map</function> to
8227 see how to write rules that will do fusion and yet give an efficient
8228 program even if fusion doesn't happen.  More rules in <filename>GHC/List.lhs</filename>.
8229 </para>
8230 </listitem>
8231
8232 </itemizedlist>
8233
8234 </para>
8235
8236 </sect2>
8237
8238 <sect2 id="core-pragma">
8239   <title>CORE pragma</title>
8240
8241   <indexterm><primary>CORE pragma</primary></indexterm>
8242   <indexterm><primary>pragma, CORE</primary></indexterm>
8243   <indexterm><primary>core, annotation</primary></indexterm>
8244
8245 <para>
8246   The external core format supports <quote>Note</quote> annotations;
8247   the <literal>CORE</literal> pragma gives a way to specify what these
8248   should be in your Haskell source code.  Syntactically, core
8249   annotations are attached to expressions and take a Haskell string
8250   literal as an argument.  The following function definition shows an
8251   example:
8252
8253 <programlisting>
8254 f x = ({-# CORE "foo" #-} show) ({-# CORE "bar" #-} x)
8255 </programlisting>
8256
8257   Semantically, this is equivalent to:
8258
8259 <programlisting>
8260 g x = show x
8261 </programlisting>
8262 </para>
8263
8264 <para>
8265   However, when external core is generated (via
8266   <option>-fext-core</option>), there will be Notes attached to the
8267   expressions <function>show</function> and <varname>x</varname>.
8268   The core function declaration for <function>f</function> is:
8269 </para>
8270
8271 <programlisting>
8272   f :: %forall a . GHCziShow.ZCTShow a ->
8273                    a -> GHCziBase.ZMZN GHCziBase.Char =
8274     \ @ a (zddShow::GHCziShow.ZCTShow a) (eta::a) ->
8275         (%note "foo"
8276          %case zddShow %of (tpl::GHCziShow.ZCTShow a)
8277            {GHCziShow.ZCDShow
8278             (tpl1::GHCziBase.Int ->
8279                    a ->
8280                    GHCziBase.ZMZN GHCziBase.Char -> GHCziBase.ZMZN GHCziBase.Cha
8281 r)
8282             (tpl2::a -> GHCziBase.ZMZN GHCziBase.Char)
8283             (tpl3::GHCziBase.ZMZN a ->
8284                    GHCziBase.ZMZN GHCziBase.Char -> GHCziBase.ZMZN GHCziBase.Cha
8285 r) ->
8286               tpl2})
8287         (%note "bar"
8288          eta);
8289 </programlisting>
8290
8291 <para>
8292   Here, we can see that the function <function>show</function> (which
8293   has been expanded out to a case expression over the Show dictionary)
8294   has a <literal>%note</literal> attached to it, as does the
8295   expression <varname>eta</varname> (which used to be called
8296   <varname>x</varname>).
8297 </para>
8298
8299 </sect2>
8300
8301 </sect1>
8302
8303 <sect1 id="special-ids">
8304 <title>Special built-in functions</title>
8305 <para>GHC has a few built-in functions with special behaviour.  These
8306 are now described in the module <ulink
8307 url="../libraries/ghc-prim/GHC-Prim.html"><literal>GHC.Prim</literal></ulink>
8308 in the library documentation.</para>
8309 </sect1>
8310
8311
8312 <sect1 id="generic-classes">
8313 <title>Generic classes</title>
8314
8315 <para>
8316 The ideas behind this extension are described in detail in "Derivable type classes",
8317 Ralf Hinze and Simon Peyton Jones, Haskell Workshop, Montreal Sept 2000, pp94-105.
8318 An example will give the idea:
8319 </para>
8320
8321 <programlisting>
8322   import Generics
8323
8324   class Bin a where
8325     toBin   :: a -> [Int]
8326     fromBin :: [Int] -> (a, [Int])
8327   
8328     toBin {| Unit |}    Unit      = []
8329     toBin {| a :+: b |} (Inl x)   = 0 : toBin x
8330     toBin {| a :+: b |} (Inr y)   = 1 : toBin y
8331     toBin {| a :*: b |} (x :*: y) = toBin x ++ toBin y
8332   
8333     fromBin {| Unit |}    bs      = (Unit, bs)
8334     fromBin {| a :+: b |} (0:bs)  = (Inl x, bs')    where (x,bs') = fromBin bs
8335     fromBin {| a :+: b |} (1:bs)  = (Inr y, bs')    where (y,bs') = fromBin bs
8336     fromBin {| a :*: b |} bs      = (x :*: y, bs'') where (x,bs' ) = fromBin bs
8337                                                           (y,bs'') = fromBin bs'
8338 </programlisting>
8339 <para>
8340 This class declaration explains how <literal>toBin</literal> and <literal>fromBin</literal>
8341 work for arbitrary data types.  They do so by giving cases for unit, product, and sum,
8342 which are defined thus in the library module <literal>Generics</literal>:
8343 </para>
8344 <programlisting>
8345   data Unit    = Unit
8346   data a :+: b = Inl a | Inr b
8347   data a :*: b = a :*: b
8348 </programlisting>
8349 <para>
8350 Now you can make a data type into an instance of Bin like this:
8351 <programlisting>
8352   instance (Bin a, Bin b) => Bin (a,b)
8353   instance Bin a => Bin [a]
8354 </programlisting>
8355 That is, just leave off the "where" clause.  Of course, you can put in the
8356 where clause and over-ride whichever methods you please.
8357 </para>
8358
8359     <sect2>
8360       <title> Using generics </title>
8361       <para>To use generics you need to</para>
8362       <itemizedlist>
8363         <listitem>
8364           <para>Use the flags <option>-fglasgow-exts</option> (to enable the extra syntax), 
8365                 <option>-XGenerics</option> (to generate extra per-data-type code),
8366                 and <option>-package lang</option> (to make the <literal>Generics</literal> library
8367                 available.  </para>
8368         </listitem>
8369         <listitem>
8370           <para>Import the module <literal>Generics</literal> from the
8371           <literal>lang</literal> package.  This import brings into
8372           scope the data types <literal>Unit</literal>,
8373           <literal>:*:</literal>, and <literal>:+:</literal>.  (You
8374           don't need this import if you don't mention these types
8375           explicitly; for example, if you are simply giving instance
8376           declarations.)</para>
8377         </listitem>
8378       </itemizedlist>
8379     </sect2>
8380
8381 <sect2> <title> Changes wrt the paper </title>
8382 <para>
8383 Note that the type constructors <literal>:+:</literal> and <literal>:*:</literal> 
8384 can be written infix (indeed, you can now use
8385 any operator starting in a colon as an infix type constructor).  Also note that
8386 the type constructors are not exactly as in the paper (Unit instead of 1, etc).
8387 Finally, note that the syntax of the type patterns in the class declaration
8388 uses "<literal>{|</literal>" and "<literal>|}</literal>" brackets; curly braces
8389 alone would ambiguous when they appear on right hand sides (an extension we 
8390 anticipate wanting).
8391 </para>
8392 </sect2>
8393
8394 <sect2> <title>Terminology and restrictions</title>
8395 <para>
8396 Terminology.  A "generic default method" in a class declaration
8397 is one that is defined using type patterns as above.
8398 A "polymorphic default method" is a default method defined as in Haskell 98.
8399 A "generic class declaration" is a class declaration with at least one
8400 generic default method.
8401 </para>
8402
8403 <para>
8404 Restrictions:
8405 <itemizedlist>
8406 <listitem>
8407 <para>
8408 Alas, we do not yet implement the stuff about constructor names and 
8409 field labels.
8410 </para>
8411 </listitem>
8412
8413 <listitem>
8414 <para>
8415 A generic class can have only one parameter; you can't have a generic
8416 multi-parameter class.
8417 </para>
8418 </listitem>
8419
8420 <listitem>
8421 <para>
8422 A default method must be defined entirely using type patterns, or entirely
8423 without.  So this is illegal:
8424 <programlisting>
8425   class Foo a where
8426     op :: a -> (a, Bool)
8427     op {| Unit |} Unit = (Unit, True)
8428     op x               = (x,    False)
8429 </programlisting>
8430 However it is perfectly OK for some methods of a generic class to have 
8431 generic default methods and others to have polymorphic default methods.
8432 </para>
8433 </listitem>
8434
8435 <listitem>
8436 <para>
8437 The type variable(s) in the type pattern for a generic method declaration
8438 scope over the right hand side.  So this is legal (note the use of the type variable ``p'' in a type signature on the right hand side:
8439 <programlisting>
8440   class Foo a where
8441     op :: a -> Bool
8442     op {| p :*: q |} (x :*: y) = op (x :: p)
8443     ...
8444 </programlisting>
8445 </para>
8446 </listitem>
8447
8448 <listitem>
8449 <para>
8450 The type patterns in a generic default method must take one of the forms:
8451 <programlisting>
8452        a :+: b
8453        a :*: b
8454        Unit
8455 </programlisting>
8456 where "a" and "b" are type variables.  Furthermore, all the type patterns for
8457 a single type constructor (<literal>:*:</literal>, say) must be identical; they
8458 must use the same type variables.  So this is illegal:
8459 <programlisting>
8460   class Foo a where
8461     op :: a -> Bool
8462     op {| a :+: b |} (Inl x) = True
8463     op {| p :+: q |} (Inr y) = False
8464 </programlisting>
8465 The type patterns must be identical, even in equations for different methods of the class.
8466 So this too is illegal:
8467 <programlisting>
8468   class Foo a where
8469     op1 :: a -> Bool
8470     op1 {| a :*: b |} (x :*: y) = True
8471
8472     op2 :: a -> Bool
8473     op2 {| p :*: q |} (x :*: y) = False
8474 </programlisting>
8475 (The reason for this restriction is that we gather all the equations for a particular type constructor
8476 into a single generic instance declaration.)
8477 </para>
8478 </listitem>
8479
8480 <listitem>
8481 <para>
8482 A generic method declaration must give a case for each of the three type constructors.
8483 </para>
8484 </listitem>
8485
8486 <listitem>
8487 <para>
8488 The type for a generic method can be built only from:
8489   <itemizedlist>
8490   <listitem> <para> Function arrows </para> </listitem>
8491   <listitem> <para> Type variables </para> </listitem>
8492   <listitem> <para> Tuples </para> </listitem>
8493   <listitem> <para> Arbitrary types not involving type variables </para> </listitem>
8494   </itemizedlist>
8495 Here are some example type signatures for generic methods:
8496 <programlisting>
8497     op1 :: a -> Bool
8498     op2 :: Bool -> (a,Bool)
8499     op3 :: [Int] -> a -> a
8500     op4 :: [a] -> Bool
8501 </programlisting>
8502 Here, op1, op2, op3 are OK, but op4 is rejected, because it has a type variable
8503 inside a list.  
8504 </para>
8505 <para>
8506 This restriction is an implementation restriction: we just haven't got around to
8507 implementing the necessary bidirectional maps over arbitrary type constructors.
8508 It would be relatively easy to add specific type constructors, such as Maybe and list,
8509 to the ones that are allowed.</para>
8510 </listitem>
8511
8512 <listitem>
8513 <para>
8514 In an instance declaration for a generic class, the idea is that the compiler
8515 will fill in the methods for you, based on the generic templates.  However it can only
8516 do so if
8517   <itemizedlist>
8518   <listitem>
8519   <para>
8520   The instance type is simple (a type constructor applied to type variables, as in Haskell 98).
8521   </para>
8522   </listitem>
8523   <listitem>
8524   <para>
8525   No constructor of the instance type has unboxed fields.
8526   </para>
8527   </listitem>
8528   </itemizedlist>
8529 (Of course, these things can only arise if you are already using GHC extensions.)
8530 However, you can still give an instance declarations for types which break these rules,
8531 provided you give explicit code to override any generic default methods.
8532 </para>
8533 </listitem>
8534
8535 </itemizedlist>
8536 </para>
8537
8538 <para>
8539 The option <option>-ddump-deriv</option> dumps incomprehensible stuff giving details of 
8540 what the compiler does with generic declarations.
8541 </para>
8542
8543 </sect2>
8544
8545 <sect2> <title> Another example </title>
8546 <para>
8547 Just to finish with, here's another example I rather like:
8548 <programlisting>
8549   class Tag a where
8550     nCons :: a -> Int
8551     nCons {| Unit |}    _ = 1
8552     nCons {| a :*: b |} _ = 1
8553     nCons {| a :+: b |} _ = nCons (bot::a) + nCons (bot::b)
8554   
8555     tag :: a -> Int
8556     tag {| Unit |}    _       = 1
8557     tag {| a :*: b |} _       = 1   
8558     tag {| a :+: b |} (Inl x) = tag x
8559     tag {| a :+: b |} (Inr y) = nCons (bot::a) + tag y
8560 </programlisting>
8561 </para>
8562 </sect2>
8563 </sect1>
8564
8565 <sect1 id="monomorphism">
8566 <title>Control over monomorphism</title>
8567
8568 <para>GHC supports two flags that control the way in which generalisation is
8569 carried out at let and where bindings.
8570 </para>
8571
8572 <sect2>
8573 <title>Switching off the dreaded Monomorphism Restriction</title>
8574           <indexterm><primary><option>-XNoMonomorphismRestriction</option></primary></indexterm>
8575
8576 <para>Haskell's monomorphism restriction (see 
8577 <ulink url="http://www.haskell.org/onlinereport/decls.html#sect4.5.5">Section
8578 4.5.5</ulink>
8579 of the Haskell Report)
8580 can be completely switched off by
8581 <option>-XNoMonomorphismRestriction</option>.
8582 </para>
8583 </sect2>
8584
8585 <sect2>
8586 <title>Monomorphic pattern bindings</title>
8587           <indexterm><primary><option>-XNoMonoPatBinds</option></primary></indexterm>
8588           <indexterm><primary><option>-XMonoPatBinds</option></primary></indexterm>
8589
8590           <para> As an experimental change, we are exploring the possibility of
8591           making pattern bindings monomorphic; that is, not generalised at all.  
8592             A pattern binding is a binding whose LHS has no function arguments,
8593             and is not a simple variable.  For example:
8594 <programlisting>
8595   f x = x                    -- Not a pattern binding
8596   f = \x -> x                -- Not a pattern binding
8597   f :: Int -> Int = \x -> x  -- Not a pattern binding
8598
8599   (g,h) = e                  -- A pattern binding
8600   (f) = e                    -- A pattern binding
8601   [x] = e                    -- A pattern binding
8602 </programlisting>
8603 Experimentally, GHC now makes pattern bindings monomorphic <emphasis>by
8604 default</emphasis>.  Use <option>-XNoMonoPatBinds</option> to recover the
8605 standard behaviour.
8606 </para>
8607 </sect2>
8608 </sect1>
8609
8610
8611
8612 <!-- Emacs stuff:
8613      ;;; Local Variables: ***
8614      ;;; mode: xml ***
8615      ;;; sgml-parent-document: ("users_guide.xml" "book" "chapter" "sect1") ***
8616      ;;; ispell-local-dictionary: "british" ***
8617      ;;; End: ***
8618  -->
8619