Added -ftype-families to the user's manual
[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>These 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>NB. turning on an option that enables special syntax
46     <emphasis>might</emphasis> cause working Haskell 98 code to fail
47     to compile, perhaps because it uses a variable name which has
48     become a reserved word.  So, together with each option below, we
49     list the special syntax which is enabled by this option.  We use
50     notation and nonterminal names from the Haskell 98 lexical syntax
51     (see the Haskell 98 Report).  There are two classes of special
52     syntax:</para>
53
54     <itemizedlist>
55       <listitem>
56         <para>New reserved words and symbols: character sequences
57         which are no longer available for use as identifiers in the
58         program.</para>
59       </listitem>
60       <listitem>
61         <para>Other special syntax: sequences of characters that have
62         a different meaning when this particular option is turned
63         on.</para>
64       </listitem>
65     </itemizedlist>
66
67     <para>We are only listing syntax changes here that might affect
68     existing working programs (i.e. "stolen" syntax).  Many of these
69     extensions will also enable new context-free syntax, but in all
70     cases programs written to use the new syntax would not be
71     compilable without the option enabled.</para>
72
73     <variablelist>
74
75       <varlistentry>
76         <term>
77           <option>-fglasgow-exts</option>:
78           <indexterm><primary><option>-fglasgow-exts</option></primary></indexterm>
79         </term>
80         <listitem>
81           <para>This simultaneously enables all of the extensions to
82           Haskell 98 described in <xref
83           linkend="ghc-language-features"/>, except where otherwise
84           noted. </para>
85
86           <para>New reserved words: <literal>forall</literal> (only in
87           types), <literal>mdo</literal>.</para>
88
89           <para>Other syntax stolen:
90               <replaceable>varid</replaceable>{<literal>&num;</literal>},
91               <replaceable>char</replaceable><literal>&num;</literal>,      
92               <replaceable>string</replaceable><literal>&num;</literal>,    
93               <replaceable>integer</replaceable><literal>&num;</literal>,    
94               <replaceable>float</replaceable><literal>&num;</literal>,    
95               <replaceable>float</replaceable><literal>&num;&num;</literal>,    
96               <literal>(&num;</literal>, <literal>&num;)</literal>,         
97               <literal>|)</literal>, <literal>{|</literal>.</para>
98         </listitem>
99       </varlistentry>
100
101       <varlistentry>
102         <term>
103           <option>-ffi</option> and <option>-fffi</option>:
104           <indexterm><primary><option>-ffi</option></primary></indexterm>
105           <indexterm><primary><option>-fffi</option></primary></indexterm>
106         </term>
107         <listitem>
108           <para>This option enables the language extension defined in the
109           Haskell 98 Foreign Function Interface Addendum.</para>
110
111           <para>New reserved words: <literal>foreign</literal>.</para>
112         </listitem>
113       </varlistentry>
114
115       <varlistentry>
116         <term>
117           <option>-fno-monomorphism-restriction</option>,<option>-fno-mono-pat-binds</option>:
118         </term>
119         <listitem>
120           <para> These two flags control how generalisation is done.
121             See <xref linkend="monomorphism"/>.
122           </para>
123         </listitem>
124       </varlistentry>
125
126       <varlistentry>
127         <term>
128           <option>-fextended-default-rules</option>:
129           <indexterm><primary><option>-fextended-default-rules</option></primary></indexterm>
130         </term>
131         <listitem>
132           <para> Use GHCi's extended default rules in a regular module (<xref linkend="extended-default-rules"/>).
133           Independent of the <option>-fglasgow-exts</option>
134           flag. </para>
135         </listitem>
136       </varlistentry>
137
138       <varlistentry>
139         <term>
140           <option>-fallow-overlapping-instances</option>
141           <indexterm><primary><option>-fallow-overlapping-instances</option></primary></indexterm>
142         </term>
143         <term>
144           <option>-fallow-undecidable-instances</option>
145           <indexterm><primary><option>-fallow-undecidable-instances</option></primary></indexterm>
146         </term>
147         <term>
148           <option>-fallow-incoherent-instances</option>
149           <indexterm><primary><option>-fallow-incoherent-instances</option></primary></indexterm>
150         </term>
151         <term>
152           <option>-fcontext-stack=N</option>
153           <indexterm><primary><option>-fcontext-stack</option></primary></indexterm>
154         </term>
155         <listitem>
156           <para> See <xref linkend="instance-decls"/>.  Only relevant
157           if you also use <option>-fglasgow-exts</option>.</para>
158         </listitem>
159       </varlistentry>
160
161       <varlistentry>
162         <term>
163           <option>-finline-phase</option>
164           <indexterm><primary><option>-finline-phase</option></primary></indexterm>
165         </term>
166         <listitem>
167           <para>See <xref linkend="rewrite-rules"/>.  Only relevant if
168           you also use <option>-fglasgow-exts</option>.</para>
169         </listitem>
170       </varlistentry>
171
172       <varlistentry>
173         <term>
174           <option>-farrows</option>
175           <indexterm><primary><option>-farrows</option></primary></indexterm>
176         </term>
177         <listitem>
178           <para>See <xref linkend="arrow-notation"/>.  Independent of
179           <option>-fglasgow-exts</option>.</para>
180
181           <para>New reserved words/symbols: <literal>rec</literal>,
182           <literal>proc</literal>, <literal>-&lt;</literal>,
183           <literal>&gt;-</literal>, <literal>-&lt;&lt;</literal>,
184           <literal>&gt;&gt;-</literal>.</para>
185
186           <para>Other syntax stolen: <literal>(|</literal>,
187           <literal>|)</literal>.</para>
188         </listitem>
189       </varlistentry>
190
191       <varlistentry>
192         <term>
193           <option>-fgenerics</option>
194           <indexterm><primary><option>-fgenerics</option></primary></indexterm>
195         </term>
196         <listitem>
197           <para>See <xref linkend="generic-classes"/>.  Independent of
198           <option>-fglasgow-exts</option>.</para>
199         </listitem>
200       </varlistentry>
201
202       <varlistentry>
203         <term><option>-fno-implicit-prelude</option></term>
204         <listitem>
205           <para><indexterm><primary>-fno-implicit-prelude
206           option</primary></indexterm> GHC normally imports
207           <filename>Prelude.hi</filename> files for you.  If you'd
208           rather it didn't, then give it a
209           <option>-fno-implicit-prelude</option> option.  The idea is
210           that you can then import a Prelude of your own.  (But don't
211           call it <literal>Prelude</literal>; the Haskell module
212           namespace is flat, and you must not conflict with any
213           Prelude module.)</para>
214
215           <para>Even though you have not imported the Prelude, most of
216           the built-in syntax still refers to the built-in Haskell
217           Prelude types and values, as specified by the Haskell
218           Report.  For example, the type <literal>[Int]</literal>
219           still means <literal>Prelude.[] Int</literal>; tuples
220           continue to refer to the standard Prelude tuples; the
221           translation for list comprehensions continues to use
222           <literal>Prelude.map</literal> etc.</para>
223
224           <para>However, <option>-fno-implicit-prelude</option> does
225           change the handling of certain built-in syntax: see <xref
226           linkend="rebindable-syntax"/>.</para>
227         </listitem>
228       </varlistentry>
229
230       <varlistentry>
231         <term><option>-fimplicit-params</option></term>
232         <listitem>
233           <para>Enables implicit parameters (see <xref
234           linkend="implicit-parameters"/>).  Currently also implied by 
235           <option>-fglasgow-exts</option>.</para>
236
237           <para>Syntax stolen:
238           <literal>?<replaceable>varid</replaceable></literal>,
239           <literal>%<replaceable>varid</replaceable></literal>.</para>
240         </listitem>
241       </varlistentry>
242
243       <varlistentry>
244         <term><option>-foverloaded-strings</option></term>
245         <listitem>
246           <para>Enables overloaded string literals (see <xref
247           linkend="overloaded-strings"/>).</para>
248         </listitem>
249       </varlistentry>
250
251       <varlistentry>
252         <term><option>-fscoped-type-variables</option></term>
253         <listitem>
254           <para>Enables lexically-scoped type variables (see <xref
255           linkend="scoped-type-variables"/>).  Implied by
256           <option>-fglasgow-exts</option>.</para>
257         </listitem>
258       </varlistentry>
259
260       <varlistentry>
261         <term><option>-fth</option></term>
262         <listitem>
263           <para>Enables Template Haskell (see <xref
264           linkend="template-haskell"/>).  This flag must
265           be given explicitly; it is no longer implied by
266           <option>-fglasgow-exts</option>.</para>
267
268           <para>Syntax stolen: <literal>[|</literal>,
269           <literal>[e|</literal>, <literal>[p|</literal>,
270           <literal>[d|</literal>, <literal>[t|</literal>,
271           <literal>$(</literal>,
272           <literal>$<replaceable>varid</replaceable></literal>.</para>
273         </listitem>
274       </varlistentry>
275
276     </variablelist>
277   </sect1>
278
279 <!-- UNBOXED TYPES AND PRIMITIVE OPERATIONS -->
280 <sect1 id="primitives">
281   <title>Unboxed types and primitive operations</title>
282
283 <para>GHC is built on a raft of primitive data types and operations.
284 While you really can use this stuff to write fast code,
285   we generally find it a lot less painful, and more satisfying in the
286   long run, to use higher-level language features and libraries.  With
287   any luck, the code you write will be optimised to the efficient
288   unboxed version in any case.  And if it isn't, we'd like to know
289   about it.</para>
290
291 <para>We do not currently have good, up-to-date documentation about the
292 primitives, perhaps because they are mainly intended for internal use.
293 There used to be a long section about them here in the User Guide, but it
294 became out of date, and wrong information is worse than none.</para>
295
296 <para>The Real Truth about what primitive types there are, and what operations
297 work over those types, is held in the file
298 <filename>fptools/ghc/compiler/prelude/primops.txt.pp</filename>.
299 This file is used directly to generate GHC's primitive-operation definitions, so
300 it is always correct!  It is also intended for processing into text.</para>
301
302 <para> Indeed,
303 the result of such processing is part of the description of the 
304  <ulink
305       url="http://haskell.cs.yale.edu/ghc/docs/papers/core.ps.gz">External
306          Core language</ulink>.
307 So that document is a good place to look for a type-set version.
308 We would be very happy if someone wanted to volunteer to produce an SGML
309 back end to the program that processes <filename>primops.txt</filename> so that
310 we could include the results here in the User Guide.</para>
311
312 <para>What follows here is a brief summary of some main points.</para>
313   
314 <sect2 id="glasgow-unboxed">
315 <title>Unboxed types
316 </title>
317
318 <para>
319 <indexterm><primary>Unboxed types (Glasgow extension)</primary></indexterm>
320 </para>
321
322 <para>Most types in GHC are <firstterm>boxed</firstterm>, which means
323 that values of that type are represented by a pointer to a heap
324 object.  The representation of a Haskell <literal>Int</literal>, for
325 example, is a two-word heap object.  An <firstterm>unboxed</firstterm>
326 type, however, is represented by the value itself, no pointers or heap
327 allocation are involved.
328 </para>
329
330 <para>
331 Unboxed types correspond to the &ldquo;raw machine&rdquo; types you
332 would use in C: <literal>Int&num;</literal> (long int),
333 <literal>Double&num;</literal> (double), <literal>Addr&num;</literal>
334 (void *), etc.  The <emphasis>primitive operations</emphasis>
335 (PrimOps) on these types are what you might expect; e.g.,
336 <literal>(+&num;)</literal> is addition on
337 <literal>Int&num;</literal>s, and is the machine-addition that we all
338 know and love&mdash;usually one instruction.
339 </para>
340
341 <para>
342 Primitive (unboxed) types cannot be defined in Haskell, and are
343 therefore built into the language and compiler.  Primitive types are
344 always unlifted; that is, a value of a primitive type cannot be
345 bottom.  We use the convention that primitive types, values, and
346 operations have a <literal>&num;</literal> suffix.
347 </para>
348
349 <para>
350 Primitive values are often represented by a simple bit-pattern, such
351 as <literal>Int&num;</literal>, <literal>Float&num;</literal>,
352 <literal>Double&num;</literal>.  But this is not necessarily the case:
353 a primitive value might be represented by a pointer to a
354 heap-allocated object.  Examples include
355 <literal>Array&num;</literal>, the type of primitive arrays.  A
356 primitive array is heap-allocated because it is too big a value to fit
357 in a register, and would be too expensive to copy around; in a sense,
358 it is accidental that it is represented by a pointer.  If a pointer
359 represents a primitive value, then it really does point to that value:
360 no unevaluated thunks, no indirections&hellip;nothing can be at the
361 other end of the pointer than the primitive value.
362 A numerically-intensive program using unboxed types can
363 go a <emphasis>lot</emphasis> faster than its &ldquo;standard&rdquo;
364 counterpart&mdash;we saw a threefold speedup on one example.
365 </para>
366
367 <para>
368 There are some restrictions on the use of primitive types:
369 <itemizedlist>
370 <listitem><para>The main restriction
371 is that you can't pass a primitive value to a polymorphic
372 function or store one in a polymorphic data type.  This rules out
373 things like <literal>[Int&num;]</literal> (i.e. lists of primitive
374 integers).  The reason for this restriction is that polymorphic
375 arguments and constructor fields are assumed to be pointers: if an
376 unboxed integer is stored in one of these, the garbage collector would
377 attempt to follow it, leading to unpredictable space leaks.  Or a
378 <function>seq</function> operation on the polymorphic component may
379 attempt to dereference the pointer, with disastrous results.  Even
380 worse, the unboxed value might be larger than a pointer
381 (<literal>Double&num;</literal> for instance).
382 </para>
383 </listitem>
384 <listitem><para> You cannot define a newtype whose representation type
385 (the argument type of the data constructor) is an unboxed type.  Thus,
386 this is illegal:
387 <programlisting>
388   newtype A = MkA Int#
389 </programlisting>
390 </para></listitem>
391 <listitem><para> You cannot bind a variable with an unboxed type
392 in a <emphasis>top-level</emphasis> binding.
393 </para></listitem>
394 <listitem><para> You cannot bind a variable with an unboxed type
395 in a <emphasis>recursive</emphasis> binding.
396 </para></listitem>
397 <listitem><para> You may bind unboxed variables in a (non-recursive,
398 non-top-level) pattern binding, but any such variable causes the entire
399 pattern-match
400 to become strict.  For example:
401 <programlisting>
402   data Foo = Foo Int Int#
403
404   f x = let (Foo a b, w) = ..rhs.. in ..body..
405 </programlisting>
406 Since <literal>b</literal> has type <literal>Int#</literal>, the entire pattern
407 match
408 is strict, and the program behaves as if you had written
409 <programlisting>
410   data Foo = Foo Int Int#
411
412   f x = case ..rhs.. of { (Foo a b, w) -> ..body.. }
413 </programlisting>
414 </para>
415 </listitem>
416 </itemizedlist>
417 </para>
418
419 </sect2>
420
421 <sect2 id="unboxed-tuples">
422 <title>Unboxed Tuples
423 </title>
424
425 <para>
426 Unboxed tuples aren't really exported by <literal>GHC.Exts</literal>,
427 they're available by default with <option>-fglasgow-exts</option>.  An
428 unboxed tuple looks like this:
429 </para>
430
431 <para>
432
433 <programlisting>
434 (# e_1, ..., e_n #)
435 </programlisting>
436
437 </para>
438
439 <para>
440 where <literal>e&lowbar;1..e&lowbar;n</literal> are expressions of any
441 type (primitive or non-primitive).  The type of an unboxed tuple looks
442 the same.
443 </para>
444
445 <para>
446 Unboxed tuples are used for functions that need to return multiple
447 values, but they avoid the heap allocation normally associated with
448 using fully-fledged tuples.  When an unboxed tuple is returned, the
449 components are put directly into registers or on the stack; the
450 unboxed tuple itself does not have a composite representation.  Many
451 of the primitive operations listed in <literal>primops.txt.pp</literal> return unboxed
452 tuples.
453 In particular, the <literal>IO</literal> and <literal>ST</literal> monads use unboxed
454 tuples to avoid unnecessary allocation during sequences of operations.
455 </para>
456
457 <para>
458 There are some pretty stringent restrictions on the use of unboxed tuples:
459 <itemizedlist>
460 <listitem>
461
462 <para>
463 Values of unboxed tuple types are subject to the same restrictions as
464 other unboxed types; i.e. they may not be stored in polymorphic data
465 structures or passed to polymorphic functions.
466
467 </para>
468 </listitem>
469 <listitem>
470
471 <para>
472 No variable can have an unboxed tuple type, nor may a constructor or function
473 argument have an unboxed tuple type.  The following are all illegal:
474
475
476 <programlisting>
477   data Foo = Foo (# Int, Int #)
478
479   f :: (# Int, Int #) -&#62; (# Int, Int #)
480   f x = x
481
482   g :: (# Int, Int #) -&#62; Int
483   g (# a,b #) = a
484
485   h x = let y = (# x,x #) in ...
486 </programlisting>
487 </para>
488 </listitem>
489 </itemizedlist>
490 </para>
491 <para>
492 The typical use of unboxed tuples is simply to return multiple values,
493 binding those multiple results with a <literal>case</literal> expression, thus:
494 <programlisting>
495   f x y = (# x+1, y-1 #)
496   g x = case f x x of { (# a, b #) -&#62; a + b }
497 </programlisting>
498 You can have an unboxed tuple in a pattern binding, thus
499 <programlisting>
500   f x = let (# p,q #) = h x in ..body..
501 </programlisting>
502 If the types of <literal>p</literal> and <literal>q</literal> are not unboxed,
503 the resulting binding is lazy like any other Haskell pattern binding.  The 
504 above example desugars like this:
505 <programlisting>
506   f x = let t = case h x o f{ (# p,q #) -> (p,q)
507             p = fst t
508             q = snd t
509         in ..body..
510 </programlisting>
511 Indeed, the bindings can even be recursive.
512 </para>
513
514 </sect2>
515 </sect1>
516
517
518 <!-- ====================== SYNTACTIC EXTENSIONS =======================  -->
519
520 <sect1 id="syntax-extns">
521 <title>Syntactic extensions</title>
522  
523     <!-- ====================== HIERARCHICAL MODULES =======================  -->
524
525     <sect2 id="hierarchical-modules">
526       <title>Hierarchical Modules</title>
527
528       <para>GHC supports a small extension to the syntax of module
529       names: a module name is allowed to contain a dot
530       <literal>&lsquo;.&rsquo;</literal>.  This is also known as the
531       &ldquo;hierarchical module namespace&rdquo; extension, because
532       it extends the normally flat Haskell module namespace into a
533       more flexible hierarchy of modules.</para>
534
535       <para>This extension has very little impact on the language
536       itself; modules names are <emphasis>always</emphasis> fully
537       qualified, so you can just think of the fully qualified module
538       name as <quote>the module name</quote>.  In particular, this
539       means that the full module name must be given after the
540       <literal>module</literal> keyword at the beginning of the
541       module; for example, the module <literal>A.B.C</literal> must
542       begin</para>
543
544 <programlisting>module A.B.C</programlisting>
545
546
547       <para>It is a common strategy to use the <literal>as</literal>
548       keyword to save some typing when using qualified names with
549       hierarchical modules.  For example:</para>
550
551 <programlisting>
552 import qualified Control.Monad.ST.Strict as ST
553 </programlisting>
554
555       <para>For details on how GHC searches for source and interface
556       files in the presence of hierarchical modules, see <xref
557       linkend="search-path"/>.</para>
558
559       <para>GHC comes with a large collection of libraries arranged
560       hierarchically; see the accompanying <ulink
561       url="../libraries/index.html">library
562       documentation</ulink>.  More libraries to install are available
563       from <ulink
564       url="http://hackage.haskell.org/packages/hackage.html">HackageDB</ulink>.</para>
565     </sect2>
566
567     <!-- ====================== PATTERN GUARDS =======================  -->
568
569 <sect2 id="pattern-guards">
570 <title>Pattern guards</title>
571
572 <para>
573 <indexterm><primary>Pattern guards (Glasgow extension)</primary></indexterm>
574 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.)
575 </para>
576
577 <para>
578 Suppose we have an abstract data type of finite maps, with a
579 lookup operation:
580
581 <programlisting>
582 lookup :: FiniteMap -> Int -> Maybe Int
583 </programlisting>
584
585 The lookup returns <function>Nothing</function> if the supplied key is not in the domain of the mapping, and <function>(Just v)</function> otherwise,
586 where <varname>v</varname> is the value that the key maps to.  Now consider the following definition:
587 </para>
588
589 <programlisting>
590 clunky env var1 var2 | ok1 &amp;&amp; ok2 = val1 + val2
591 | otherwise  = var1 + var2
592 where
593   m1 = lookup env var1
594   m2 = lookup env var2
595   ok1 = maybeToBool m1
596   ok2 = maybeToBool m2
597   val1 = expectJust m1
598   val2 = expectJust m2
599 </programlisting>
600
601 <para>
602 The auxiliary functions are 
603 </para>
604
605 <programlisting>
606 maybeToBool :: Maybe a -&gt; Bool
607 maybeToBool (Just x) = True
608 maybeToBool Nothing  = False
609
610 expectJust :: Maybe a -&gt; a
611 expectJust (Just x) = x
612 expectJust Nothing  = error "Unexpected Nothing"
613 </programlisting>
614
615 <para>
616 What is <function>clunky</function> doing? The guard <literal>ok1 &amp;&amp;
617 ok2</literal> checks that both lookups succeed, using
618 <function>maybeToBool</function> to convert the <function>Maybe</function>
619 types to booleans. The (lazily evaluated) <function>expectJust</function>
620 calls extract the values from the results of the lookups, and binds the
621 returned values to <varname>val1</varname> and <varname>val2</varname>
622 respectively.  If either lookup fails, then clunky takes the
623 <literal>otherwise</literal> case and returns the sum of its arguments.
624 </para>
625
626 <para>
627 This is certainly legal Haskell, but it is a tremendously verbose and
628 un-obvious way to achieve the desired effect.  Arguably, a more direct way
629 to write clunky would be to use case expressions:
630 </para>
631
632 <programlisting>
633 clunky env var1 var2 = case lookup env var1 of
634   Nothing -&gt; fail
635   Just val1 -&gt; case lookup env var2 of
636     Nothing -&gt; fail
637     Just val2 -&gt; val1 + val2
638 where
639   fail = var1 + var2
640 </programlisting>
641
642 <para>
643 This is a bit shorter, but hardly better.  Of course, we can rewrite any set
644 of pattern-matching, guarded equations as case expressions; that is
645 precisely what the compiler does when compiling equations! The reason that
646 Haskell provides guarded equations is because they allow us to write down
647 the cases we want to consider, one at a time, independently of each other. 
648 This structure is hidden in the case version.  Two of the right-hand sides
649 are really the same (<function>fail</function>), and the whole expression
650 tends to become more and more indented. 
651 </para>
652
653 <para>
654 Here is how I would write clunky:
655 </para>
656
657 <programlisting>
658 clunky env var1 var2
659   | Just val1 &lt;- lookup env var1
660   , Just val2 &lt;- lookup env var2
661   = val1 + val2
662 ...other equations for clunky...
663 </programlisting>
664
665 <para>
666 The semantics should be clear enough.  The qualifiers are matched in order. 
667 For a <literal>&lt;-</literal> qualifier, which I call a pattern guard, the
668 right hand side is evaluated and matched against the pattern on the left. 
669 If the match fails then the whole guard fails and the next equation is
670 tried.  If it succeeds, then the appropriate binding takes place, and the
671 next qualifier is matched, in the augmented environment.  Unlike list
672 comprehensions, however, the type of the expression to the right of the
673 <literal>&lt;-</literal> is the same as the type of the pattern to its
674 left.  The bindings introduced by pattern guards scope over all the
675 remaining guard qualifiers, and over the right hand side of the equation.
676 </para>
677
678 <para>
679 Just as with list comprehensions, boolean expressions can be freely mixed
680 with among the pattern guards.  For example:
681 </para>
682
683 <programlisting>
684 f x | [y] &lt;- x
685     , y > 3
686     , Just z &lt;- h y
687     = ...
688 </programlisting>
689
690 <para>
691 Haskell's current guards therefore emerge as a special case, in which the
692 qualifier list has just one element, a boolean expression.
693 </para>
694 </sect2>
695
696     <!-- ===================== Recursive do-notation ===================  -->
697
698 <sect2 id="mdo-notation">
699 <title>The recursive do-notation
700 </title>
701
702 <para> The recursive do-notation (also known as mdo-notation) is implemented as described in
703 "A recursive do for Haskell",
704 Levent Erkok, John Launchbury",
705 Haskell Workshop 2002, pages: 29-37. Pittsburgh, Pennsylvania. 
706 </para>
707 <para>
708 The do-notation of Haskell does not allow <emphasis>recursive bindings</emphasis>,
709 that is, the variables bound in a do-expression are visible only in the textually following 
710 code block. Compare this to a let-expression, where bound variables are visible in the entire binding
711 group. It turns out that several applications can benefit from recursive bindings in
712 the do-notation, and this extension provides the necessary syntactic support.
713 </para>
714 <para>
715 Here is a simple (yet contrived) example:
716 </para>
717 <programlisting>
718 import Control.Monad.Fix
719
720 justOnes = mdo xs &lt;- Just (1:xs)
721                return xs
722 </programlisting>
723 <para>
724 As you can guess <literal>justOnes</literal> will evaluate to <literal>Just [1,1,1,...</literal>.
725 </para>
726
727 <para>
728 The Control.Monad.Fix library introduces the <literal>MonadFix</literal> class. It's definition is:
729 </para>
730 <programlisting>
731 class Monad m => MonadFix m where
732    mfix :: (a -> m a) -> m a
733 </programlisting>
734 <para>
735 The function <literal>mfix</literal>
736 dictates how the required recursion operation should be performed. If recursive bindings are required for a monad,
737 then that monad must be declared an instance of the <literal>MonadFix</literal> class.
738 For details, see the above mentioned reference.
739 </para>
740 <para>
741 The following instances of <literal>MonadFix</literal> are automatically provided: List, Maybe, IO. 
742 Furthermore, the Control.Monad.ST and Control.Monad.ST.Lazy modules provide the instances of the MonadFix class 
743 for Haskell's internal state monad (strict and lazy, respectively).
744 </para>
745 <para>
746 There are three important points in using the recursive-do notation:
747 <itemizedlist>
748 <listitem><para>
749 The recursive version of the do-notation uses the keyword <literal>mdo</literal> (rather
750 than <literal>do</literal>).
751 </para></listitem>
752
753 <listitem><para>
754 You should <literal>import Control.Monad.Fix</literal>.
755 (Note: Strictly speaking, this import is required only when you need to refer to the name
756 <literal>MonadFix</literal> in your program, but the import is always safe, and the programmers
757 are encouraged to always import this module when using the mdo-notation.)
758 </para></listitem>
759
760 <listitem><para>
761 As with other extensions, ghc should be given the flag <literal>-fglasgow-exts</literal>
762 </para></listitem>
763 </itemizedlist>
764 </para>
765
766 <para>
767 The web page: <ulink url="http://www.cse.ogi.edu/PacSoft/projects/rmb">http://www.cse.ogi.edu/PacSoft/projects/rmb</ulink>
768 contains up to date information on recursive monadic bindings.
769 </para>
770
771 <para>
772 Historical note: The old implementation of the mdo-notation (and most
773 of the existing documents) used the name
774 <literal>MonadRec</literal> for the class and the corresponding library.
775 This name is not supported by GHC.
776 </para>
777
778 </sect2>
779
780
781    <!-- ===================== PARALLEL LIST COMPREHENSIONS ===================  -->
782
783   <sect2 id="parallel-list-comprehensions">
784     <title>Parallel List Comprehensions</title>
785     <indexterm><primary>list comprehensions</primary><secondary>parallel</secondary>
786     </indexterm>
787     <indexterm><primary>parallel list comprehensions</primary>
788     </indexterm>
789
790     <para>Parallel list comprehensions are a natural extension to list
791     comprehensions.  List comprehensions can be thought of as a nice
792     syntax for writing maps and filters.  Parallel comprehensions
793     extend this to include the zipWith family.</para>
794
795     <para>A parallel list comprehension has multiple independent
796     branches of qualifier lists, each separated by a `|' symbol.  For
797     example, the following zips together two lists:</para>
798
799 <programlisting>
800    [ (x, y) | x &lt;- xs | y &lt;- ys ] 
801 </programlisting>
802
803     <para>The behavior of parallel list comprehensions follows that of
804     zip, in that the resulting list will have the same length as the
805     shortest branch.</para>
806
807     <para>We can define parallel list comprehensions by translation to
808     regular comprehensions.  Here's the basic idea:</para>
809
810     <para>Given a parallel comprehension of the form: </para>
811
812 <programlisting>
813    [ e | p1 &lt;- e11, p2 &lt;- e12, ... 
814        | q1 &lt;- e21, q2 &lt;- e22, ... 
815        ... 
816    ] 
817 </programlisting>
818
819     <para>This will be translated to: </para>
820
821 <programlisting>
822    [ e | ((p1,p2), (q1,q2), ...) &lt;- zipN [(p1,p2) | p1 &lt;- e11, p2 &lt;- e12, ...] 
823                                          [(q1,q2) | q1 &lt;- e21, q2 &lt;- e22, ...] 
824                                          ... 
825    ] 
826 </programlisting>
827
828     <para>where `zipN' is the appropriate zip for the given number of
829     branches.</para>
830
831   </sect2>
832
833 <sect2 id="rebindable-syntax">
834 <title>Rebindable syntax</title>
835
836
837       <para>GHC allows most kinds of built-in syntax to be rebound by
838       the user, to facilitate replacing the <literal>Prelude</literal>
839       with a home-grown version, for example.</para>
840
841             <para>You may want to define your own numeric class
842             hierarchy.  It completely defeats that purpose if the
843             literal "1" means "<literal>Prelude.fromInteger
844             1</literal>", which is what the Haskell Report specifies.
845             So the <option>-fno-implicit-prelude</option> flag causes
846             the following pieces of built-in syntax to refer to
847             <emphasis>whatever is in scope</emphasis>, not the Prelude
848             versions:
849
850             <itemizedlist>
851               <listitem>
852                 <para>An integer literal <literal>368</literal> means
853                 "<literal>fromInteger (368::Integer)</literal>", rather than
854                 "<literal>Prelude.fromInteger (368::Integer)</literal>".
855 </para> </listitem>         
856
857       <listitem><para>Fractional literals are handed in just the same way,
858           except that the translation is 
859               <literal>fromRational (3.68::Rational)</literal>.
860 </para> </listitem>         
861
862           <listitem><para>The equality test in an overloaded numeric pattern
863               uses whatever <literal>(==)</literal> is in scope.
864 </para> </listitem>         
865
866           <listitem><para>The subtraction operation, and the
867           greater-than-or-equal test, in <literal>n+k</literal> patterns
868               use whatever <literal>(-)</literal> and <literal>(>=)</literal> are in scope.
869               </para></listitem>
870
871               <listitem>
872                 <para>Negation (e.g. "<literal>- (f x)</literal>")
873                 means "<literal>negate (f x)</literal>", both in numeric
874                 patterns, and expressions.
875               </para></listitem>
876
877               <listitem>
878           <para>"Do" notation is translated using whatever
879               functions <literal>(>>=)</literal>,
880               <literal>(>>)</literal>, and <literal>fail</literal>,
881               are in scope (not the Prelude
882               versions).  List comprehensions, mdo (<xref linkend="mdo-notation"/>), and parallel array
883               comprehensions, are unaffected.  </para></listitem>
884
885               <listitem>
886                 <para>Arrow
887                 notation (see <xref linkend="arrow-notation"/>)
888                 uses whatever <literal>arr</literal>,
889                 <literal>(>>>)</literal>, <literal>first</literal>,
890                 <literal>app</literal>, <literal>(|||)</literal> and
891                 <literal>loop</literal> functions are in scope. But unlike the
892                 other constructs, the types of these functions must match the
893                 Prelude types very closely.  Details are in flux; if you want
894                 to use this, ask!
895               </para></listitem>
896             </itemizedlist>
897 In all cases (apart from arrow notation), the static semantics should be that of the desugared form,
898 even if that is a little unexpected. For emample, the 
899 static semantics of the literal <literal>368</literal>
900 is exactly that of <literal>fromInteger (368::Integer)</literal>; it's fine for
901 <literal>fromInteger</literal> to have any of the types:
902 <programlisting>
903 fromInteger :: Integer -> Integer
904 fromInteger :: forall a. Foo a => Integer -> a
905 fromInteger :: Num a => a -> Integer
906 fromInteger :: Integer -> Bool -> Bool
907 </programlisting>
908 </para>
909                 
910              <para>Be warned: this is an experimental facility, with
911              fewer checks than usual.  Use <literal>-dcore-lint</literal>
912              to typecheck the desugared program.  If Core Lint is happy
913              you should be all right.</para>
914
915 </sect2>
916
917 <sect2 id="postfix-operators">
918 <title>Postfix operators</title>
919
920 <para>
921 GHC allows a small extension to the syntax of left operator sections, which
922 allows you to define postfix operators.  The extension is this:  the left section
923 <programlisting>
924   (e !)
925 </programlisting> 
926 is equivalent (from the point of view of both type checking and execution) to the expression
927 <programlisting>
928   ((!) e)
929 </programlisting> 
930 (for any expression <literal>e</literal> and operator <literal>(!)</literal>.
931 The strict Haskell 98 interpretation is that the section is equivalent to
932 <programlisting>
933   (\y -> (!) e y)
934 </programlisting> 
935 That is, the operator must be a function of two arguments.  GHC allows it to
936 take only one argument, and that in turn allows you to write the function
937 postfix.
938 </para>
939 <para>Since this extension goes beyond Haskell 98, it should really be enabled
940 by a flag; but in fact it is enabled all the time.  (No Haskell 98 programs
941 change their behaviour, of course.)
942 </para>
943 <para>The extension does not extend to the left-hand side of function
944 definitions; you must define such a function in prefix form.</para>
945
946 </sect2>
947
948 </sect1>
949
950
951 <!-- TYPE SYSTEM EXTENSIONS -->
952 <sect1 id="data-type-extensions">
953 <title>Extensions to data types and type synonyms</title>
954
955 <sect2 id="nullary-types">
956 <title>Data types with no constructors</title>
957
958 <para>With the <option>-fglasgow-exts</option> flag, GHC lets you declare
959 a data type with no constructors.  For example:</para>
960
961 <programlisting>
962   data S      -- S :: *
963   data T a    -- T :: * -> *
964 </programlisting>
965
966 <para>Syntactically, the declaration lacks the "= constrs" part.  The 
967 type can be parameterised over types of any kind, but if the kind is
968 not <literal>*</literal> then an explicit kind annotation must be used
969 (see <xref linkend="kinding"/>).</para>
970
971 <para>Such data types have only one value, namely bottom.
972 Nevertheless, they can be useful when defining "phantom types".</para>
973 </sect2>
974
975 <sect2 id="infix-tycons">
976 <title>Infix type constructors, classes, and type variables</title>
977
978 <para>
979 GHC allows type constructors, classes, and type variables to be operators, and
980 to be written infix, very much like expressions.  More specifically:
981 <itemizedlist>
982 <listitem><para>
983   A type constructor or class can be an operator, beginning with a colon; e.g. <literal>:*:</literal>.
984   The lexical syntax is the same as that for data constructors.
985   </para></listitem>
986 <listitem><para>
987   Data type and type-synonym declarations can be written infix, parenthesised
988   if you want further arguments.  E.g.
989 <screen>
990   data a :*: b = Foo a b
991   type a :+: b = Either a b
992   class a :=: b where ...
993
994   data (a :**: b) x = Baz a b x
995   type (a :++: b) y = Either (a,b) y
996 </screen>
997   </para></listitem>
998 <listitem><para>
999   Types, and class constraints, can be written infix.  For example
1000   <screen>
1001         x :: Int :*: Bool
1002         f :: (a :=: b) => a -> b
1003   </screen>
1004   </para></listitem>
1005 <listitem><para>
1006   A type variable can be an (unqualified) operator e.g. <literal>+</literal>.
1007   The lexical syntax is the same as that for variable operators, excluding "(.)",
1008   "(!)", and "(*)".  In a binding position, the operator must be
1009   parenthesised.  For example:
1010 <programlisting>
1011    type T (+) = Int + Int
1012    f :: T Either
1013    f = Left 3
1014  
1015    liftA2 :: Arrow (~>)
1016           => (a -> b -> c) -> (e ~> a) -> (e ~> b) -> (e ~> c)
1017    liftA2 = ...
1018 </programlisting>
1019   </para></listitem>
1020 <listitem><para>
1021   Back-quotes work
1022   as for expressions, both for type constructors and type variables;  e.g. <literal>Int `Either` Bool</literal>, or
1023   <literal>Int `a` Bool</literal>.  Similarly, parentheses work the same; e.g.  <literal>(:*:) Int Bool</literal>.
1024   </para></listitem>
1025 <listitem><para>
1026   Fixities may be declared for type constructors, or classes, just as for data constructors.  However,
1027   one cannot distinguish between the two in a fixity declaration; a fixity declaration
1028   sets the fixity for a data constructor and the corresponding type constructor.  For example:
1029 <screen>
1030   infixl 7 T, :*:
1031 </screen>
1032   sets the fixity for both type constructor <literal>T</literal> and data constructor <literal>T</literal>,
1033   and similarly for <literal>:*:</literal>.
1034   <literal>Int `a` Bool</literal>.
1035   </para></listitem>
1036 <listitem><para>
1037   Function arrow is <literal>infixr</literal> with fixity 0.  (This might change; I'm not sure what it should be.)
1038   </para></listitem>
1039
1040 </itemizedlist>
1041 </para>
1042 </sect2>
1043
1044 <sect2 id="type-synonyms">
1045 <title>Liberalised type synonyms</title>
1046
1047 <para>
1048 Type synonyms are like macros at the type level, and
1049 GHC does validity checking on types <emphasis>only after expanding type synonyms</emphasis>.
1050 That means that GHC can be very much more liberal about type synonyms than Haskell 98:
1051 <itemizedlist>
1052 <listitem> <para>You can write a <literal>forall</literal> (including overloading)
1053 in a type synonym, thus:
1054 <programlisting>
1055   type Discard a = forall b. Show b => a -> b -> (a, String)
1056
1057   f :: Discard a
1058   f x y = (x, show y)
1059
1060   g :: Discard Int -> (Int,String)    -- A rank-2 type
1061   g f = f 3 True
1062 </programlisting>
1063 </para>
1064 </listitem>
1065
1066 <listitem><para>
1067 You can write an unboxed tuple in a type synonym:
1068 <programlisting>
1069   type Pr = (# Int, Int #)
1070
1071   h :: Int -> Pr
1072   h x = (# x, x #)
1073 </programlisting>
1074 </para></listitem>
1075
1076 <listitem><para>
1077 You can apply a type synonym to a forall type:
1078 <programlisting>
1079   type Foo a = a -> a -> Bool
1080  
1081   f :: Foo (forall b. b->b)
1082 </programlisting>
1083 After expanding the synonym, <literal>f</literal> has the legal (in GHC) type:
1084 <programlisting>
1085   f :: (forall b. b->b) -> (forall b. b->b) -> Bool
1086 </programlisting>
1087 </para></listitem>
1088
1089 <listitem><para>
1090 You can apply a type synonym to a partially applied type synonym:
1091 <programlisting>
1092   type Generic i o = forall x. i x -> o x
1093   type Id x = x
1094   
1095   foo :: Generic Id []
1096 </programlisting>
1097 After expanding the synonym, <literal>foo</literal> has the legal (in GHC) type:
1098 <programlisting>
1099   foo :: forall x. x -> [x]
1100 </programlisting>
1101 </para></listitem>
1102
1103 </itemizedlist>
1104 </para>
1105
1106 <para>
1107 GHC currently does kind checking before expanding synonyms (though even that
1108 could be changed.)
1109 </para>
1110 <para>
1111 After expanding type synonyms, GHC does validity checking on types, looking for
1112 the following mal-formedness which isn't detected simply by kind checking:
1113 <itemizedlist>
1114 <listitem><para>
1115 Type constructor applied to a type involving for-alls.
1116 </para></listitem>
1117 <listitem><para>
1118 Unboxed tuple on left of an arrow.
1119 </para></listitem>
1120 <listitem><para>
1121 Partially-applied type synonym.
1122 </para></listitem>
1123 </itemizedlist>
1124 So, for example,
1125 this will be rejected:
1126 <programlisting>
1127   type Pr = (# Int, Int #)
1128
1129   h :: Pr -> Int
1130   h x = ...
1131 </programlisting>
1132 because GHC does not allow  unboxed tuples on the left of a function arrow.
1133 </para>
1134 </sect2>
1135
1136
1137 <sect2 id="existential-quantification">
1138 <title>Existentially quantified data constructors
1139 </title>
1140
1141 <para>
1142 The idea of using existential quantification in data type declarations
1143 was suggested by Perry, and implemented in Hope+ (Nigel Perry, <emphasis>The Implementation
1144 of Practical Functional Programming Languages</emphasis>, PhD Thesis, University of
1145 London, 1991). It was later formalised by Laufer and Odersky
1146 (<emphasis>Polymorphic type inference and abstract data types</emphasis>,
1147 TOPLAS, 16(5), pp1411-1430, 1994).
1148 It's been in Lennart
1149 Augustsson's <command>hbc</command> Haskell compiler for several years, and
1150 proved very useful.  Here's the idea.  Consider the declaration:
1151 </para>
1152
1153 <para>
1154
1155 <programlisting>
1156   data Foo = forall a. MkFoo a (a -> Bool)
1157            | Nil
1158 </programlisting>
1159
1160 </para>
1161
1162 <para>
1163 The data type <literal>Foo</literal> has two constructors with types:
1164 </para>
1165
1166 <para>
1167
1168 <programlisting>
1169   MkFoo :: forall a. a -> (a -> Bool) -> Foo
1170   Nil   :: Foo
1171 </programlisting>
1172
1173 </para>
1174
1175 <para>
1176 Notice that the type variable <literal>a</literal> in the type of <function>MkFoo</function>
1177 does not appear in the data type itself, which is plain <literal>Foo</literal>.
1178 For example, the following expression is fine:
1179 </para>
1180
1181 <para>
1182
1183 <programlisting>
1184   [MkFoo 3 even, MkFoo 'c' isUpper] :: [Foo]
1185 </programlisting>
1186
1187 </para>
1188
1189 <para>
1190 Here, <literal>(MkFoo 3 even)</literal> packages an integer with a function
1191 <function>even</function> that maps an integer to <literal>Bool</literal>; and <function>MkFoo 'c'
1192 isUpper</function> packages a character with a compatible function.  These
1193 two things are each of type <literal>Foo</literal> and can be put in a list.
1194 </para>
1195
1196 <para>
1197 What can we do with a value of type <literal>Foo</literal>?.  In particular,
1198 what happens when we pattern-match on <function>MkFoo</function>?
1199 </para>
1200
1201 <para>
1202
1203 <programlisting>
1204   f (MkFoo val fn) = ???
1205 </programlisting>
1206
1207 </para>
1208
1209 <para>
1210 Since all we know about <literal>val</literal> and <function>fn</function> is that they
1211 are compatible, the only (useful) thing we can do with them is to
1212 apply <function>fn</function> to <literal>val</literal> to get a boolean.  For example:
1213 </para>
1214
1215 <para>
1216
1217 <programlisting>
1218   f :: Foo -> Bool
1219   f (MkFoo val fn) = fn val
1220 </programlisting>
1221
1222 </para>
1223
1224 <para>
1225 What this allows us to do is to package heterogenous values
1226 together with a bunch of functions that manipulate them, and then treat
1227 that collection of packages in a uniform manner.  You can express
1228 quite a bit of object-oriented-like programming this way.
1229 </para>
1230
1231 <sect3 id="existential">
1232 <title>Why existential?
1233 </title>
1234
1235 <para>
1236 What has this to do with <emphasis>existential</emphasis> quantification?
1237 Simply that <function>MkFoo</function> has the (nearly) isomorphic type
1238 </para>
1239
1240 <para>
1241
1242 <programlisting>
1243   MkFoo :: (exists a . (a, a -> Bool)) -> Foo
1244 </programlisting>
1245
1246 </para>
1247
1248 <para>
1249 But Haskell programmers can safely think of the ordinary
1250 <emphasis>universally</emphasis> quantified type given above, thereby avoiding
1251 adding a new existential quantification construct.
1252 </para>
1253
1254 </sect3>
1255
1256 <sect3>
1257 <title>Type classes</title>
1258
1259 <para>
1260 An easy extension is to allow
1261 arbitrary contexts before the constructor.  For example:
1262 </para>
1263
1264 <para>
1265
1266 <programlisting>
1267 data Baz = forall a. Eq a => Baz1 a a
1268          | forall b. Show b => Baz2 b (b -> b)
1269 </programlisting>
1270
1271 </para>
1272
1273 <para>
1274 The two constructors have the types you'd expect:
1275 </para>
1276
1277 <para>
1278
1279 <programlisting>
1280 Baz1 :: forall a. Eq a => a -> a -> Baz
1281 Baz2 :: forall b. Show b => b -> (b -> b) -> Baz
1282 </programlisting>
1283
1284 </para>
1285
1286 <para>
1287 But when pattern matching on <function>Baz1</function> the matched values can be compared
1288 for equality, and when pattern matching on <function>Baz2</function> the first matched
1289 value can be converted to a string (as well as applying the function to it).
1290 So this program is legal:
1291 </para>
1292
1293 <para>
1294
1295 <programlisting>
1296   f :: Baz -> String
1297   f (Baz1 p q) | p == q    = "Yes"
1298                | otherwise = "No"
1299   f (Baz2 v fn)            = show (fn v)
1300 </programlisting>
1301
1302 </para>
1303
1304 <para>
1305 Operationally, in a dictionary-passing implementation, the
1306 constructors <function>Baz1</function> and <function>Baz2</function> must store the
1307 dictionaries for <literal>Eq</literal> and <literal>Show</literal> respectively, and
1308 extract it on pattern matching.
1309 </para>
1310
1311 <para>
1312 Notice the way that the syntax fits smoothly with that used for
1313 universal quantification earlier.
1314 </para>
1315
1316 </sect3>
1317
1318 <sect3 id="existential-records">
1319 <title>Record Constructors</title>
1320
1321 <para>
1322 GHC allows existentials to be used with records syntax as well.  For example:
1323
1324 <programlisting>
1325 data Counter a = forall self. NewCounter
1326     { _this    :: self
1327     , _inc     :: self -> self
1328     , _display :: self -> IO ()
1329     , tag      :: a
1330     }
1331 </programlisting>
1332 Here <literal>tag</literal> is a public field, with a well-typed selector
1333 function <literal>tag :: Counter a -> a</literal>.  The <literal>self</literal>
1334 type is hidden from the outside; any attempt to apply <literal>_this</literal>,
1335 <literal>_inc</literal> or <literal>_display</literal> as functions will raise a
1336 compile-time error.  In other words, <emphasis>GHC defines a record selector function
1337 only for fields whose type does not mention the existentially-quantified variables</emphasis>.
1338 (This example used an underscore in the fields for which record selectors
1339 will not be defined, but that is only programming style; GHC ignores them.)
1340 </para>
1341
1342 <para>
1343 To make use of these hidden fields, we need to create some helper functions:
1344
1345 <programlisting>
1346 inc :: Counter a -> Counter a
1347 inc (NewCounter x i d t) = NewCounter
1348     { _this = i x, _inc = i, _display = d, tag = t } 
1349
1350 display :: Counter a -> IO ()
1351 display NewCounter{ _this = x, _display = d } = d x
1352 </programlisting>
1353
1354 Now we can define counters with different underlying implementations:
1355
1356 <programlisting>
1357 counterA :: Counter String 
1358 counterA = NewCounter
1359     { _this = 0, _inc = (1+), _display = print, tag = "A" }
1360
1361 counterB :: Counter String 
1362 counterB = NewCounter
1363     { _this = "", _inc = ('#':), _display = putStrLn, tag = "B" }
1364
1365 main = do
1366     display (inc counterA)         -- prints "1"
1367     display (inc (inc counterB))   -- prints "##"
1368 </programlisting>
1369
1370 At the moment, record update syntax is only supported for Haskell 98 data types,
1371 so the following function does <emphasis>not</emphasis> work:
1372
1373 <programlisting>
1374 -- This is invalid; use explicit NewCounter instead for now
1375 setTag :: Counter a -> a -> Counter a
1376 setTag obj t = obj{ tag = t }
1377 </programlisting>
1378
1379 </para>
1380
1381 </sect3>
1382
1383
1384 <sect3>
1385 <title>Restrictions</title>
1386
1387 <para>
1388 There are several restrictions on the ways in which existentially-quantified
1389 constructors can be use.
1390 </para>
1391
1392 <para>
1393
1394 <itemizedlist>
1395 <listitem>
1396
1397 <para>
1398  When pattern matching, each pattern match introduces a new,
1399 distinct, type for each existential type variable.  These types cannot
1400 be unified with any other type, nor can they escape from the scope of
1401 the pattern match.  For example, these fragments are incorrect:
1402
1403
1404 <programlisting>
1405 f1 (MkFoo a f) = a
1406 </programlisting>
1407
1408
1409 Here, the type bound by <function>MkFoo</function> "escapes", because <literal>a</literal>
1410 is the result of <function>f1</function>.  One way to see why this is wrong is to
1411 ask what type <function>f1</function> has:
1412
1413
1414 <programlisting>
1415   f1 :: Foo -> a             -- Weird!
1416 </programlisting>
1417
1418
1419 What is this "<literal>a</literal>" in the result type? Clearly we don't mean
1420 this:
1421
1422
1423 <programlisting>
1424   f1 :: forall a. Foo -> a   -- Wrong!
1425 </programlisting>
1426
1427
1428 The original program is just plain wrong.  Here's another sort of error
1429
1430
1431 <programlisting>
1432   f2 (Baz1 a b) (Baz1 p q) = a==q
1433 </programlisting>
1434
1435
1436 It's ok to say <literal>a==b</literal> or <literal>p==q</literal>, but
1437 <literal>a==q</literal> is wrong because it equates the two distinct types arising
1438 from the two <function>Baz1</function> constructors.
1439
1440
1441 </para>
1442 </listitem>
1443 <listitem>
1444
1445 <para>
1446 You can't pattern-match on an existentially quantified
1447 constructor in a <literal>let</literal> or <literal>where</literal> group of
1448 bindings. So this is illegal:
1449
1450
1451 <programlisting>
1452   f3 x = a==b where { Baz1 a b = x }
1453 </programlisting>
1454
1455 Instead, use a <literal>case</literal> expression:
1456
1457 <programlisting>
1458   f3 x = case x of Baz1 a b -> a==b
1459 </programlisting>
1460
1461 In general, you can only pattern-match
1462 on an existentially-quantified constructor in a <literal>case</literal> expression or
1463 in the patterns of a function definition.
1464
1465 The reason for this restriction is really an implementation one.
1466 Type-checking binding groups is already a nightmare without
1467 existentials complicating the picture.  Also an existential pattern
1468 binding at the top level of a module doesn't make sense, because it's
1469 not clear how to prevent the existentially-quantified type "escaping".
1470 So for now, there's a simple-to-state restriction.  We'll see how
1471 annoying it is.
1472
1473 </para>
1474 </listitem>
1475 <listitem>
1476
1477 <para>
1478 You can't use existential quantification for <literal>newtype</literal>
1479 declarations.  So this is illegal:
1480
1481
1482 <programlisting>
1483   newtype T = forall a. Ord a => MkT a
1484 </programlisting>
1485
1486
1487 Reason: a value of type <literal>T</literal> must be represented as a
1488 pair of a dictionary for <literal>Ord t</literal> and a value of type
1489 <literal>t</literal>.  That contradicts the idea that
1490 <literal>newtype</literal> should have no concrete representation.
1491 You can get just the same efficiency and effect by using
1492 <literal>data</literal> instead of <literal>newtype</literal>.  If
1493 there is no overloading involved, then there is more of a case for
1494 allowing an existentially-quantified <literal>newtype</literal>,
1495 because the <literal>data</literal> version does carry an
1496 implementation cost, but single-field existentially quantified
1497 constructors aren't much use.  So the simple restriction (no
1498 existential stuff on <literal>newtype</literal>) stands, unless there
1499 are convincing reasons to change it.
1500
1501
1502 </para>
1503 </listitem>
1504 <listitem>
1505
1506 <para>
1507  You can't use <literal>deriving</literal> to define instances of a
1508 data type with existentially quantified data constructors.
1509
1510 Reason: in most cases it would not make sense. For example:;
1511
1512 <programlisting>
1513 data T = forall a. MkT [a] deriving( Eq )
1514 </programlisting>
1515
1516 To derive <literal>Eq</literal> in the standard way we would need to have equality
1517 between the single component of two <function>MkT</function> constructors:
1518
1519 <programlisting>
1520 instance Eq T where
1521   (MkT a) == (MkT b) = ???
1522 </programlisting>
1523
1524 But <varname>a</varname> and <varname>b</varname> have distinct types, and so can't be compared.
1525 It's just about possible to imagine examples in which the derived instance
1526 would make sense, but it seems altogether simpler simply to prohibit such
1527 declarations.  Define your own instances!
1528 </para>
1529 </listitem>
1530
1531 </itemizedlist>
1532
1533 </para>
1534
1535 </sect3>
1536 </sect2>
1537
1538 <!-- ====================== Generalised algebraic data types =======================  -->
1539
1540 <sect2 id="gadt-style">
1541 <title>Declaring data types with explicit constructor signatures</title>
1542
1543 <para>GHC allows you to declare an algebraic data type by 
1544 giving the type signatures of constructors explicitly.  For example:
1545 <programlisting>
1546   data Maybe a where
1547       Nothing :: Maybe a
1548       Just    :: a -> Maybe a
1549 </programlisting>
1550 The form is called a "GADT-style declaration"
1551 because Generalised Algebraic Data Types, described in <xref linkend="gadt"/>, 
1552 can only be declared using this form.</para>
1553 <para>Notice that GADT-style syntax generalises existential types (<xref linkend="existential-quantification"/>).  
1554 For example, these two declarations are equivalent:
1555 <programlisting>
1556   data Foo = forall a. MkFoo a (a -> Bool)
1557   data Foo' where { MKFoo :: a -> (a->Bool) -> Foo' }
1558 </programlisting>
1559 </para>
1560 <para>Any data type that can be declared in standard Haskell-98 syntax 
1561 can also be declared using GADT-style syntax.
1562 The choice is largely stylistic, but GADT-style declarations differ in one important respect:
1563 they treat class constraints on the data constructors differently.
1564 Specifically, if the constructor is given a type-class context, that
1565 context is made available by pattern matching.  For example:
1566 <programlisting>
1567   data Set a where
1568     MkSet :: Eq a => [a] -> Set a
1569
1570   makeSet :: Eq a => [a] -> Set a
1571   makeSet xs = MkSet (nub xs)
1572
1573   insert :: a -> Set a -> Set a
1574   insert a (MkSet as) | a `elem` as = MkSet as
1575                       | otherwise   = MkSet (a:as)
1576 </programlisting>
1577 A use of <literal>MkSet</literal> as a constructor (e.g. in the definition of <literal>makeSet</literal>) 
1578 gives rise to a <literal>(Eq a)</literal>
1579 constraint, as you would expect.  The new feature is that pattern-matching on <literal>MkSet</literal>
1580 (as in the definition of <literal>insert</literal>) makes <emphasis>available</emphasis> an <literal>(Eq a)</literal>
1581 context.  In implementation terms, the <literal>MkSet</literal> constructor has a hidden field that stores
1582 the <literal>(Eq a)</literal> dictionary that is passed to <literal>MkSet</literal>; so
1583 when pattern-matching that dictionary becomes available for the right-hand side of the match.
1584 In the example, the equality dictionary is used to satisfy the equality constraint 
1585 generated by the call to <literal>elem</literal>, so that the type of
1586 <literal>insert</literal> itself has no <literal>Eq</literal> constraint.
1587 </para>
1588 <para>This behaviour contrasts with Haskell 98's peculiar treament of 
1589 contexts on a data type declaration (Section 4.2.1 of the Haskell 98 Report).
1590 In Haskell 98 the defintion
1591 <programlisting>
1592   data Eq a => Set' a = MkSet' [a]
1593 </programlisting>
1594 gives <literal>MkSet'</literal> the same type as <literal>MkSet</literal> above.  But instead of 
1595 <emphasis>making available</emphasis> an <literal>(Eq a)</literal> constraint, pattern-matching
1596 on <literal>MkSet'</literal> <emphasis>requires</emphasis> an <literal>(Eq a)</literal> constraint!
1597 GHC faithfully implements this behaviour, odd though it is.  But for GADT-style declarations,
1598 GHC's behaviour is much more useful, as well as much more intuitive.</para>
1599 <para>
1600 For example, a possible application of GHC's behaviour is to reify dictionaries:
1601 <programlisting>
1602    data NumInst a where
1603      MkNumInst :: Num a => NumInst a
1604
1605    intInst :: NumInst Int
1606    intInst = MkNumInst
1607
1608    plus :: NumInst a -> a -> a -> a
1609    plus MkNumInst p q = p + q
1610 </programlisting>
1611 Here, a value of type <literal>NumInst a</literal> is equivalent 
1612 to an explicit <literal>(Num a)</literal> dictionary.
1613 </para>
1614
1615 <para>
1616 The rest of this section gives further details about GADT-style data
1617 type declarations.
1618
1619 <itemizedlist>
1620 <listitem><para>
1621 The result type of each data constructor must begin with the type constructor being defined.
1622 If the result type of all constructors 
1623 has the form <literal>T a1 ... an</literal>, where <literal>a1 ... an</literal>
1624 are distinct type variables, then the data type is <emphasis>ordinary</emphasis>;
1625 otherwise is a <emphasis>generalised</emphasis> data type (<xref linkend="gadt"/>).
1626 </para></listitem>
1627
1628 <listitem><para>
1629 The type signature of
1630 each constructor is independent, and is implicitly universally quantified as usual. 
1631 Different constructors may have different universally-quantified type variables
1632 and different type-class constraints.  
1633 For example, this is fine:
1634 <programlisting>
1635   data T a where
1636     T1 :: Eq b => b -> T b
1637     T2 :: (Show c, Ix c) => c -> [c] -> T c
1638 </programlisting>
1639 </para></listitem>
1640
1641 <listitem><para>
1642 Unlike a Haskell-98-style 
1643 data type declaration, the type variable(s) in the "<literal>data Set a where</literal>" header 
1644 have no scope.  Indeed, one can write a kind signature instead:
1645 <programlisting>
1646   data Set :: * -> * where ...
1647 </programlisting>
1648 or even a mixture of the two:
1649 <programlisting>
1650   data Foo a :: (* -> *) -> * where ...
1651 </programlisting>
1652 The type variables (if given) may be explicitly kinded, so we could also write the header for <literal>Foo</literal>
1653 like this:
1654 <programlisting>
1655   data Foo a (b :: * -> *) where ...
1656 </programlisting>
1657 </para></listitem>
1658
1659
1660 <listitem><para>
1661 You can use strictness annotations, in the obvious places
1662 in the constructor type:
1663 <programlisting>
1664   data Term a where
1665       Lit    :: !Int -> Term Int
1666       If     :: Term Bool -> !(Term a) -> !(Term a) -> Term a
1667       Pair   :: Term a -> Term b -> Term (a,b)
1668 </programlisting>
1669 </para></listitem>
1670
1671 <listitem><para>
1672 You can use a <literal>deriving</literal> clause on a GADT-style data type
1673 declaration.   For example, these two declarations are equivalent
1674 <programlisting>
1675   data Maybe1 a where {
1676       Nothing1 :: Maybe1 a ;
1677       Just1    :: a -> Maybe1 a
1678     } deriving( Eq, Ord )
1679
1680   data Maybe2 a = Nothing2 | Just2 a 
1681        deriving( Eq, Ord )
1682 </programlisting>
1683 </para></listitem>
1684
1685 <listitem><para>
1686 You can use record syntax on a GADT-style data type declaration:
1687
1688 <programlisting>
1689   data Person where
1690       Adult { name :: String, children :: [Person] } :: Person
1691       Child { name :: String } :: Person
1692 </programlisting>
1693 As usual, for every constructor that has a field <literal>f</literal>, the type of
1694 field <literal>f</literal> must be the same (modulo alpha conversion).
1695 </para>
1696 <para>
1697 At the moment, record updates are not yet possible with GADT-style declarations, 
1698 so support is limited to record construction, selection and pattern matching.
1699 For exmaple
1700 <programlisting>
1701   aPerson = Adult { name = "Fred", children = [] }
1702
1703   shortName :: Person -> Bool
1704   hasChildren (Adult { children = kids }) = not (null kids)
1705   hasChildren (Child {})                  = False
1706 </programlisting>
1707 </para></listitem>
1708
1709 <listitem><para> 
1710 As in the case of existentials declared using the Haskell-98-like record syntax 
1711 (<xref linkend="existential-records"/>),
1712 record-selector functions are generated only for those fields that have well-typed
1713 selectors.  
1714 Here is the example of that section, in GADT-style syntax:
1715 <programlisting>
1716 data Counter a where
1717     NewCounter { _this    :: self
1718                , _inc     :: self -> self
1719                , _display :: self -> IO ()
1720                , tag      :: a
1721                }
1722         :: Counter a
1723 </programlisting>
1724 As before, only one selector function is generated here, that for <literal>tag</literal>.
1725 Nevertheless, you can still use all the field names in pattern matching and record construction.
1726 </para></listitem>
1727 </itemizedlist></para>
1728 </sect2>
1729
1730 <sect2 id="gadt">
1731 <title>Generalised Algebraic Data Types (GADTs)</title>
1732
1733 <para>Generalised Algebraic Data Types generalise ordinary algebraic data types 
1734 by allowing constructors to have richer return types.  Here is an example:
1735 <programlisting>
1736   data Term a where
1737       Lit    :: Int -> Term Int
1738       Succ   :: Term Int -> Term Int
1739       IsZero :: Term Int -> Term Bool   
1740       If     :: Term Bool -> Term a -> Term a -> Term a
1741       Pair   :: Term a -> Term b -> Term (a,b)
1742 </programlisting>
1743 Notice that the return type of the constructors is not always <literal>Term a</literal>, as is the
1744 case with ordinary data types.  This generality allows us to 
1745 write a well-typed <literal>eval</literal> function
1746 for these <literal>Terms</literal>:
1747 <programlisting>
1748   eval :: Term a -> a
1749   eval (Lit i)      = i
1750   eval (Succ t)     = 1 + eval t
1751   eval (IsZero t)   = eval t == 0
1752   eval (If b e1 e2) = if eval b then eval e1 else eval e2
1753   eval (Pair e1 e2) = (eval e1, eval e2)
1754 </programlisting>
1755 The key point about GADTs is that <emphasis>pattern matching causes type refinement</emphasis>.  
1756 For example, in the right hand side of the equation
1757 <programlisting>
1758   eval :: Term a -> a
1759   eval (Lit i) =  ...
1760 </programlisting>
1761 the type <literal>a</literal> is refined to <literal>Int</literal>.  That's the whole point!
1762 A precise specification of the type rules is beyond what this user manual aspires to, 
1763 but the design closely follows that described in
1764 the paper <ulink
1765 url="http://research.microsoft.com/%7Esimonpj/papers/gadt/index.htm">Simple
1766 unification-based type inference for GADTs</ulink>,
1767 (ICFP 2006).
1768 The general principle is this: <emphasis>type refinement is only carried out 
1769 based on user-supplied type annotations</emphasis>.
1770 So if no type signature is supplied for <literal>eval</literal>, no type refinement happens, 
1771 and lots of obscure error messages will
1772 occur.  However, the refinement is quite general.  For example, if we had:
1773 <programlisting>
1774   eval :: Term a -> a -> a
1775   eval (Lit i) j =  i+j
1776 </programlisting>
1777 the pattern match causes the type <literal>a</literal> to be refined to <literal>Int</literal> (because of the type
1778 of the constructor <literal>Lit</literal>), and that refinement also applies to the type of <literal>j</literal>, and
1779 the result type of the <literal>case</literal> expression.  Hence the addition <literal>i+j</literal> is legal.
1780 </para>
1781 <para>
1782 These and many other examples are given in papers by Hongwei Xi, and
1783 Tim Sheard. There is a longer introduction
1784 <ulink url="http://haskell.org/haskellwiki/GADT">on the wiki</ulink>,
1785 and Ralf Hinze's
1786 <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
1787 may use different notation to that implemented in GHC.
1788 </para>
1789 <para>
1790 The rest of this section outlines the extensions to GHC that support GADTs. 
1791 <itemizedlist>
1792 <listitem><para>
1793 A GADT can only be declared using GADT-style syntax (<xref linkend="gadt-style"/>); 
1794 the old Haskell-98 syntax for data declarations always declares an ordinary data type.
1795 The result type of each constructor must begin with the type constructor being defined,
1796 but for a GADT the arguments to the type constructor can be arbitrary monotypes.  
1797 For example, in the <literal>Term</literal> data
1798 type above, the type of each constructor must end with <literal>Term ty</literal>, but
1799 the <literal>ty</literal> may not be a type variable (e.g. the <literal>Lit</literal>
1800 constructor).
1801 </para></listitem>
1802
1803 <listitem><para>
1804 You cannot use a <literal>deriving</literal> clause for a GADT; only for
1805 an ordianary data type.
1806 </para></listitem>
1807
1808 <listitem><para>
1809 As mentioned in <xref linkend="gadt-style"/>, record syntax is supported.
1810 For example:
1811 <programlisting>
1812   data Term a where
1813       Lit    { val  :: Int }      :: Term Int
1814       Succ   { num  :: Term Int } :: Term Int
1815       Pred   { num  :: Term Int } :: Term Int
1816       IsZero { arg  :: Term Int } :: Term Bool  
1817       Pair   { arg1 :: Term a
1818              , arg2 :: Term b
1819              }                    :: Term (a,b)
1820       If     { cnd  :: Term Bool
1821              , tru  :: Term a
1822              , fls  :: Term a
1823              }                    :: Term a
1824 </programlisting>
1825 However, for GADTs there is the following additional constraint: 
1826 every constructor that has a field <literal>f</literal> must have
1827 the same result type (modulo alpha conversion)
1828 Hence, in the above example, we cannot merge the <literal>num</literal> 
1829 and <literal>arg</literal> fields above into a 
1830 single name.  Although their field types are both <literal>Term Int</literal>,
1831 their selector functions actually have different types:
1832
1833 <programlisting>
1834   num :: Term Int -> Term Int
1835   arg :: Term Bool -> Term Int
1836 </programlisting>
1837 </para></listitem>
1838
1839 </itemizedlist>
1840 </para>
1841
1842 </sect2>
1843
1844 <!-- ====================== End of Generalised algebraic data types =======================  -->
1845
1846
1847 <sect2 id="deriving-typeable">
1848 <title>Deriving clause for classes <literal>Typeable</literal> and <literal>Data</literal></title>
1849
1850 <para>
1851 Haskell 98 allows the programmer to add "<literal>deriving( Eq, Ord )</literal>" to a data type 
1852 declaration, to generate a standard instance declaration for classes specified in the <literal>deriving</literal> clause.  
1853 In Haskell 98, the only classes that may appear in the <literal>deriving</literal> clause are the standard
1854 classes <literal>Eq</literal>, <literal>Ord</literal>, 
1855 <literal>Enum</literal>, <literal>Ix</literal>, <literal>Bounded</literal>, <literal>Read</literal>, and <literal>Show</literal>.
1856 </para>
1857 <para>
1858 GHC extends this list with two more classes that may be automatically derived 
1859 (provided the <option>-fglasgow-exts</option> flag is specified):
1860 <literal>Typeable</literal>, and <literal>Data</literal>.  These classes are defined in the library
1861 modules <literal>Data.Typeable</literal> and <literal>Data.Generics</literal> respectively, and the
1862 appropriate class must be in scope before it can be mentioned in the <literal>deriving</literal> clause.
1863 </para>
1864 <para>An instance of <literal>Typeable</literal> can only be derived if the
1865 data type has seven or fewer type parameters, all of kind <literal>*</literal>.
1866 The reason for this is that the <literal>Typeable</literal> class is derived using the scheme
1867 described in
1868 <ulink url="http://research.microsoft.com/%7Esimonpj/papers/hmap/gmap2.ps">
1869 Scrap More Boilerplate: Reflection, Zips, and Generalised Casts
1870 </ulink>.
1871 (Section 7.4 of the paper describes the multiple <literal>Typeable</literal> classes that
1872 are used, and only <literal>Typeable1</literal> up to
1873 <literal>Typeable7</literal> are provided in the library.)
1874 In other cases, there is nothing to stop the programmer writing a <literal>TypableX</literal>
1875 class, whose kind suits that of the data type constructor, and
1876 then writing the data type instance by hand.
1877 </para>
1878 </sect2>
1879
1880 <sect2 id="newtype-deriving">
1881 <title>Generalised derived instances for newtypes</title>
1882
1883 <para>
1884 When you define an abstract type using <literal>newtype</literal>, you may want
1885 the new type to inherit some instances from its representation. In
1886 Haskell 98, you can inherit instances of <literal>Eq</literal>, <literal>Ord</literal>,
1887 <literal>Enum</literal> and <literal>Bounded</literal> by deriving them, but for any
1888 other classes you have to write an explicit instance declaration. For
1889 example, if you define
1890
1891 <programlisting> 
1892   newtype Dollars = Dollars Int 
1893 </programlisting> 
1894
1895 and you want to use arithmetic on <literal>Dollars</literal>, you have to
1896 explicitly define an instance of <literal>Num</literal>:
1897
1898 <programlisting> 
1899   instance Num Dollars where
1900     Dollars a + Dollars b = Dollars (a+b)
1901     ...
1902 </programlisting>
1903 All the instance does is apply and remove the <literal>newtype</literal>
1904 constructor. It is particularly galling that, since the constructor
1905 doesn't appear at run-time, this instance declaration defines a
1906 dictionary which is <emphasis>wholly equivalent</emphasis> to the <literal>Int</literal>
1907 dictionary, only slower!
1908 </para>
1909
1910
1911 <sect3> <title> Generalising the deriving clause </title>
1912 <para>
1913 GHC now permits such instances to be derived instead, so one can write 
1914 <programlisting> 
1915   newtype Dollars = Dollars Int deriving (Eq,Show,Num)
1916 </programlisting> 
1917
1918 and the implementation uses the <emphasis>same</emphasis> <literal>Num</literal> dictionary
1919 for <literal>Dollars</literal> as for <literal>Int</literal>. Notionally, the compiler
1920 derives an instance declaration of the form
1921
1922 <programlisting> 
1923   instance Num Int => Num Dollars
1924 </programlisting> 
1925
1926 which just adds or removes the <literal>newtype</literal> constructor according to the type.
1927 </para>
1928 <para>
1929
1930 We can also derive instances of constructor classes in a similar
1931 way. For example, suppose we have implemented state and failure monad
1932 transformers, such that
1933
1934 <programlisting> 
1935   instance Monad m => Monad (State s m) 
1936   instance Monad m => Monad (Failure m)
1937 </programlisting> 
1938 In Haskell 98, we can define a parsing monad by 
1939 <programlisting> 
1940   type Parser tok m a = State [tok] (Failure m) a
1941 </programlisting> 
1942
1943 which is automatically a monad thanks to the instance declarations
1944 above. With the extension, we can make the parser type abstract,
1945 without needing to write an instance of class <literal>Monad</literal>, via
1946
1947 <programlisting> 
1948   newtype Parser tok m a = Parser (State [tok] (Failure m) a)
1949                          deriving Monad
1950 </programlisting>
1951 In this case the derived instance declaration is of the form 
1952 <programlisting> 
1953   instance Monad (State [tok] (Failure m)) => Monad (Parser tok m) 
1954 </programlisting> 
1955
1956 Notice that, since <literal>Monad</literal> is a constructor class, the
1957 instance is a <emphasis>partial application</emphasis> of the new type, not the
1958 entire left hand side. We can imagine that the type declaration is
1959 ``eta-converted'' to generate the context of the instance
1960 declaration.
1961 </para>
1962 <para>
1963
1964 We can even derive instances of multi-parameter classes, provided the
1965 newtype is the last class parameter. In this case, a ``partial
1966 application'' of the class appears in the <literal>deriving</literal>
1967 clause. For example, given the class
1968
1969 <programlisting> 
1970   class StateMonad s m | m -> s where ... 
1971   instance Monad m => StateMonad s (State s m) where ... 
1972 </programlisting> 
1973 then we can derive an instance of <literal>StateMonad</literal> for <literal>Parser</literal>s by 
1974 <programlisting> 
1975   newtype Parser tok m a = Parser (State [tok] (Failure m) a)
1976                          deriving (Monad, StateMonad [tok])
1977 </programlisting>
1978
1979 The derived instance is obtained by completing the application of the
1980 class to the new type:
1981
1982 <programlisting> 
1983   instance StateMonad [tok] (State [tok] (Failure m)) =>
1984            StateMonad [tok] (Parser tok m)
1985 </programlisting>
1986 </para>
1987 <para>
1988
1989 As a result of this extension, all derived instances in newtype
1990  declarations are treated uniformly (and implemented just by reusing
1991 the dictionary for the representation type), <emphasis>except</emphasis>
1992 <literal>Show</literal> and <literal>Read</literal>, which really behave differently for
1993 the newtype and its representation.
1994 </para>
1995 </sect3>
1996
1997 <sect3> <title> A more precise specification </title>
1998 <para>
1999 Derived instance declarations are constructed as follows. Consider the
2000 declaration (after expansion of any type synonyms)
2001
2002 <programlisting> 
2003   newtype T v1...vn = T' (t vk+1...vn) deriving (c1...cm) 
2004 </programlisting> 
2005
2006 where 
2007  <itemizedlist>
2008 <listitem><para>
2009   The <literal>ci</literal> are partial applications of
2010   classes of the form <literal>C t1'...tj'</literal>, where the arity of <literal>C</literal>
2011   is exactly <literal>j+1</literal>.  That is, <literal>C</literal> lacks exactly one type argument.
2012 </para></listitem>
2013 <listitem><para>
2014   The <literal>k</literal> is chosen so that <literal>ci (T v1...vk)</literal> is well-kinded.
2015 </para></listitem>
2016 <listitem><para>
2017   The type <literal>t</literal> is an arbitrary type.
2018 </para></listitem>
2019 <listitem><para>
2020   The type variables <literal>vk+1...vn</literal> do not occur in <literal>t</literal>, 
2021   nor in the <literal>ci</literal>, and
2022 </para></listitem>
2023 <listitem><para>
2024   None of the <literal>ci</literal> is <literal>Read</literal>, <literal>Show</literal>, 
2025                 <literal>Typeable</literal>, or <literal>Data</literal>.  These classes
2026                 should not "look through" the type or its constructor.  You can still
2027                 derive these classes for a newtype, but it happens in the usual way, not 
2028                 via this new mechanism.  
2029 </para></listitem>
2030 </itemizedlist>
2031 Then, for each <literal>ci</literal>, the derived instance
2032 declaration is:
2033 <programlisting> 
2034   instance ci t => ci (T v1...vk)
2035 </programlisting>
2036 As an example which does <emphasis>not</emphasis> work, consider 
2037 <programlisting> 
2038   newtype NonMonad m s = NonMonad (State s m s) deriving Monad 
2039 </programlisting> 
2040 Here we cannot derive the instance 
2041 <programlisting> 
2042   instance Monad (State s m) => Monad (NonMonad m) 
2043 </programlisting> 
2044
2045 because the type variable <literal>s</literal> occurs in <literal>State s m</literal>,
2046 and so cannot be "eta-converted" away. It is a good thing that this
2047 <literal>deriving</literal> clause is rejected, because <literal>NonMonad m</literal> is
2048 not, in fact, a monad --- for the same reason. Try defining
2049 <literal>>>=</literal> with the correct type: you won't be able to.
2050 </para>
2051 <para>
2052
2053 Notice also that the <emphasis>order</emphasis> of class parameters becomes
2054 important, since we can only derive instances for the last one. If the
2055 <literal>StateMonad</literal> class above were instead defined as
2056
2057 <programlisting> 
2058   class StateMonad m s | m -> s where ... 
2059 </programlisting>
2060
2061 then we would not have been able to derive an instance for the
2062 <literal>Parser</literal> type above. We hypothesise that multi-parameter
2063 classes usually have one "main" parameter for which deriving new
2064 instances is most interesting.
2065 </para>
2066 <para>Lastly, all of this applies only for classes other than
2067 <literal>Read</literal>, <literal>Show</literal>, <literal>Typeable</literal>, 
2068 and <literal>Data</literal>, for which the built-in derivation applies (section
2069 4.3.3. of the Haskell Report).
2070 (For the standard classes <literal>Eq</literal>, <literal>Ord</literal>,
2071 <literal>Ix</literal>, and <literal>Bounded</literal> it is immaterial whether
2072 the standard method is used or the one described here.)
2073 </para>
2074 </sect3>
2075
2076 </sect2>
2077
2078 <sect2 id="stand-alone-deriving">
2079 <title>Stand-alone deriving declarations</title>
2080
2081 <para>
2082 GHC now allows stand-alone <literal>deriving</literal> declarations, enabled by <literal>-fglasgow-exts</literal>:
2083 <programlisting>
2084   data Foo a = Bar a | Baz String
2085
2086   derive instance Eq (Foo a)
2087 </programlisting>
2088 The token "<literal>derive</literal>" is a keyword only when followed by "<literal>instance</literal>";
2089 you can use it as a variable name elsewhere.</para>
2090 <para>The stand-alone syntax is generalised for newtypes in exactly the same
2091 way that ordinary <literal>deriving</literal> clauses are generalised (<xref linkend="newtype-deriving"/>).
2092 For example:
2093 <programlisting>
2094   newtype Foo a = MkFoo (State Int a)
2095
2096   derive instance MonadState Int Foo
2097 </programlisting>
2098 GHC always treats the <emphasis>last</emphasis> parameter of the instance
2099 (<literal>Foo</literal> in this exmample) as the type whose instance is being derived.
2100 </para>
2101
2102 </sect2>
2103
2104 </sect1>
2105
2106
2107 <!-- TYPE SYSTEM EXTENSIONS -->
2108 <sect1 id="other-type-extensions">
2109 <title>Other type system extensions</title>
2110
2111 <sect2 id="multi-param-type-classes">
2112 <title>Class declarations</title>
2113
2114 <para>
2115 This section, and the next one, documents GHC's type-class extensions.
2116 There's lots of background in the paper <ulink
2117 url="http://research.microsoft.com/~simonpj/Papers/type-class-design-space" >Type
2118 classes: exploring the design space</ulink > (Simon Peyton Jones, Mark
2119 Jones, Erik Meijer).
2120 </para>
2121 <para>
2122 All the extensions are enabled by the <option>-fglasgow-exts</option> flag.
2123 </para>
2124
2125 <sect3>
2126 <title>Multi-parameter type classes</title>
2127 <para>
2128 Multi-parameter type classes are permitted. For example:
2129
2130
2131 <programlisting>
2132   class Collection c a where
2133     union :: c a -> c a -> c a
2134     ...etc.
2135 </programlisting>
2136
2137 </para>
2138 </sect3>
2139
2140 <sect3>
2141 <title>The superclasses of a class declaration</title>
2142
2143 <para>
2144 There are no restrictions on the context in a class declaration
2145 (which introduces superclasses), except that the class hierarchy must
2146 be acyclic.  So these class declarations are OK:
2147
2148
2149 <programlisting>
2150   class Functor (m k) => FiniteMap m k where
2151     ...
2152
2153   class (Monad m, Monad (t m)) => Transform t m where
2154     lift :: m a -> (t m) a
2155 </programlisting>
2156
2157
2158 </para>
2159 <para>
2160 As in Haskell 98, The class hierarchy must be acyclic.  However, the definition
2161 of "acyclic" involves only the superclass relationships.  For example,
2162 this is OK:
2163
2164
2165 <programlisting>
2166   class C a where {
2167     op :: D b => a -> b -> b
2168   }
2169
2170   class C a => D a where { ... }
2171 </programlisting>
2172
2173
2174 Here, <literal>C</literal> is a superclass of <literal>D</literal>, but it's OK for a
2175 class operation <literal>op</literal> of <literal>C</literal> to mention <literal>D</literal>.  (It
2176 would not be OK for <literal>D</literal> to be a superclass of <literal>C</literal>.)
2177 </para>
2178 </sect3>
2179
2180
2181
2182
2183 <sect3 id="class-method-types">
2184 <title>Class method types</title>
2185
2186 <para>
2187 Haskell 98 prohibits class method types to mention constraints on the
2188 class type variable, thus:
2189 <programlisting>
2190   class Seq s a where
2191     fromList :: [a] -> s a
2192     elem     :: Eq a => a -> s a -> Bool
2193 </programlisting>
2194 The type of <literal>elem</literal> is illegal in Haskell 98, because it
2195 contains the constraint <literal>Eq a</literal>, constrains only the 
2196 class type variable (in this case <literal>a</literal>).
2197 GHC lifts this restriction.
2198 </para>
2199
2200
2201 </sect3>
2202 </sect2>
2203
2204 <sect2 id="functional-dependencies">
2205 <title>Functional dependencies
2206 </title>
2207
2208 <para> Functional dependencies are implemented as described by Mark Jones
2209 in &ldquo;<ulink url="http://www.cse.ogi.edu/~mpj/pubs/fundeps.html">Type Classes with Functional Dependencies</ulink>&rdquo;, Mark P. Jones, 
2210 In Proceedings of the 9th European Symposium on Programming, 
2211 ESOP 2000, Berlin, Germany, March 2000, Springer-Verlag LNCS 1782,
2212 .
2213 </para>
2214 <para>
2215 Functional dependencies are introduced by a vertical bar in the syntax of a 
2216 class declaration;  e.g. 
2217 <programlisting>
2218   class (Monad m) => MonadState s m | m -> s where ...
2219
2220   class Foo a b c | a b -> c where ...
2221 </programlisting>
2222 There should be more documentation, but there isn't (yet).  Yell if you need it.
2223 </para>
2224
2225 <sect3><title>Rules for functional dependencies </title>
2226 <para>
2227 In a class declaration, all of the class type variables must be reachable (in the sense 
2228 mentioned in <xref linkend="type-restrictions"/>)
2229 from the free variables of each method type.
2230 For example:
2231
2232 <programlisting>
2233   class Coll s a where
2234     empty  :: s
2235     insert :: s -> a -> s
2236 </programlisting>
2237
2238 is not OK, because the type of <literal>empty</literal> doesn't mention
2239 <literal>a</literal>.  Functional dependencies can make the type variable
2240 reachable:
2241 <programlisting>
2242   class Coll s a | s -> a where
2243     empty  :: s
2244     insert :: s -> a -> s
2245 </programlisting>
2246
2247 Alternatively <literal>Coll</literal> might be rewritten
2248
2249 <programlisting>
2250   class Coll s a where
2251     empty  :: s a
2252     insert :: s a -> a -> s a
2253 </programlisting>
2254
2255
2256 which makes the connection between the type of a collection of
2257 <literal>a</literal>'s (namely <literal>(s a)</literal>) and the element type <literal>a</literal>.
2258 Occasionally this really doesn't work, in which case you can split the
2259 class like this:
2260
2261
2262 <programlisting>
2263   class CollE s where
2264     empty  :: s
2265
2266   class CollE s => Coll s a where
2267     insert :: s -> a -> s
2268 </programlisting>
2269 </para>
2270 </sect3>
2271
2272
2273 <sect3>
2274 <title>Background on functional dependencies</title>
2275
2276 <para>The following description of the motivation and use of functional dependencies is taken
2277 from the Hugs user manual, reproduced here (with minor changes) by kind
2278 permission of Mark Jones.
2279 </para>
2280 <para> 
2281 Consider the following class, intended as part of a
2282 library for collection types:
2283 <programlisting>
2284    class Collects e ce where
2285        empty  :: ce
2286        insert :: e -> ce -> ce
2287        member :: e -> ce -> Bool
2288 </programlisting>
2289 The type variable e used here represents the element type, while ce is the type
2290 of the container itself. Within this framework, we might want to define
2291 instances of this class for lists or characteristic functions (both of which
2292 can be used to represent collections of any equality type), bit sets (which can
2293 be used to represent collections of characters), or hash tables (which can be
2294 used to represent any collection whose elements have a hash function). Omitting
2295 standard implementation details, this would lead to the following declarations: 
2296 <programlisting>
2297    instance Eq e => Collects e [e] where ...
2298    instance Eq e => Collects e (e -> Bool) where ...
2299    instance Collects Char BitSet where ...
2300    instance (Hashable e, Collects a ce)
2301               => Collects e (Array Int ce) where ...
2302 </programlisting>
2303 All this looks quite promising; we have a class and a range of interesting
2304 implementations. Unfortunately, there are some serious problems with the class
2305 declaration. First, the empty function has an ambiguous type: 
2306 <programlisting>
2307    empty :: Collects e ce => ce
2308 </programlisting>
2309 By "ambiguous" we mean that there is a type variable e that appears on the left
2310 of the <literal>=&gt;</literal> symbol, but not on the right. The problem with
2311 this is that, according to the theoretical foundations of Haskell overloading,
2312 we cannot guarantee a well-defined semantics for any term with an ambiguous
2313 type.
2314 </para>
2315 <para>
2316 We can sidestep this specific problem by removing the empty member from the
2317 class declaration. However, although the remaining members, insert and member,
2318 do not have ambiguous types, we still run into problems when we try to use
2319 them. For example, consider the following two functions: 
2320 <programlisting>
2321    f x y = insert x . insert y
2322    g     = f True 'a'
2323 </programlisting>
2324 for which GHC infers the following types: 
2325 <programlisting>
2326    f :: (Collects a c, Collects b c) => a -> b -> c -> c
2327    g :: (Collects Bool c, Collects Char c) => c -> c
2328 </programlisting>
2329 Notice that the type for f allows the two parameters x and y to be assigned
2330 different types, even though it attempts to insert each of the two values, one
2331 after the other, into the same collection. If we're trying to model collections
2332 that contain only one type of value, then this is clearly an inaccurate
2333 type. Worse still, the definition for g is accepted, without causing a type
2334 error. As a result, the error in this code will not be flagged at the point
2335 where it appears. Instead, it will show up only when we try to use g, which
2336 might even be in a different module.
2337 </para>
2338
2339 <sect4><title>An attempt to use constructor classes</title>
2340
2341 <para>
2342 Faced with the problems described above, some Haskell programmers might be
2343 tempted to use something like the following version of the class declaration: 
2344 <programlisting>
2345    class Collects e c where
2346       empty  :: c e
2347       insert :: e -> c e -> c e
2348       member :: e -> c e -> Bool
2349 </programlisting>
2350 The key difference here is that we abstract over the type constructor c that is
2351 used to form the collection type c e, and not over that collection type itself,
2352 represented by ce in the original class declaration. This avoids the immediate
2353 problems that we mentioned above: empty has type <literal>Collects e c => c
2354 e</literal>, which is not ambiguous. 
2355 </para>
2356 <para>
2357 The function f from the previous section has a more accurate type: 
2358 <programlisting>
2359    f :: (Collects e c) => e -> e -> c e -> c e
2360 </programlisting>
2361 The function g from the previous section is now rejected with a type error as
2362 we would hope because the type of f does not allow the two arguments to have
2363 different types. 
2364 This, then, is an example of a multiple parameter class that does actually work
2365 quite well in practice, without ambiguity problems.
2366 There is, however, a catch. This version of the Collects class is nowhere near
2367 as general as the original class seemed to be: only one of the four instances
2368 for <literal>Collects</literal>
2369 given above can be used with this version of Collects because only one of
2370 them---the instance for lists---has a collection type that can be written in
2371 the form c e, for some type constructor c, and element type e.
2372 </para>
2373 </sect4>
2374
2375 <sect4><title>Adding functional dependencies</title>
2376
2377 <para>
2378 To get a more useful version of the Collects class, Hugs provides a mechanism
2379 that allows programmers to specify dependencies between the parameters of a
2380 multiple parameter class (For readers with an interest in theoretical
2381 foundations and previous work: The use of dependency information can be seen
2382 both as a generalization of the proposal for `parametric type classes' that was
2383 put forward by Chen, Hudak, and Odersky, or as a special case of Mark Jones's
2384 later framework for "improvement" of qualified types. The
2385 underlying ideas are also discussed in a more theoretical and abstract setting
2386 in a manuscript [implparam], where they are identified as one point in a
2387 general design space for systems of implicit parameterization.).
2388
2389 To start with an abstract example, consider a declaration such as: 
2390 <programlisting>
2391    class C a b where ...
2392 </programlisting>
2393 which tells us simply that C can be thought of as a binary relation on types
2394 (or type constructors, depending on the kinds of a and b). Extra clauses can be
2395 included in the definition of classes to add information about dependencies
2396 between parameters, as in the following examples: 
2397 <programlisting>
2398    class D a b | a -> b where ...
2399    class E a b | a -> b, b -> a where ...
2400 </programlisting>
2401 The notation <literal>a -&gt; b</literal> used here between the | and where
2402 symbols --- not to be
2403 confused with a function type --- indicates that the a parameter uniquely
2404 determines the b parameter, and might be read as "a determines b." Thus D is
2405 not just a relation, but actually a (partial) function. Similarly, from the two
2406 dependencies that are included in the definition of E, we can see that E
2407 represents a (partial) one-one mapping between types.
2408 </para>
2409 <para>
2410 More generally, dependencies take the form <literal>x1 ... xn -&gt; y1 ... ym</literal>,
2411 where x1, ..., xn, and y1, ..., yn are type variables with n&gt;0 and
2412 m&gt;=0, meaning that the y parameters are uniquely determined by the x
2413 parameters. Spaces can be used as separators if more than one variable appears
2414 on any single side of a dependency, as in <literal>t -&gt; a b</literal>. Note that a class may be
2415 annotated with multiple dependencies using commas as separators, as in the
2416 definition of E above. Some dependencies that we can write in this notation are
2417 redundant, and will be rejected because they don't serve any useful
2418 purpose, and may instead indicate an error in the program. Examples of
2419 dependencies like this include  <literal>a -&gt; a </literal>,  
2420 <literal>a -&gt; a a </literal>,  
2421 <literal>a -&gt; </literal>, etc. There can also be
2422 some redundancy if multiple dependencies are given, as in  
2423 <literal>a-&gt;b</literal>, 
2424  <literal>b-&gt;c </literal>,  <literal>a-&gt;c </literal>, and
2425 in which some subset implies the remaining dependencies. Examples like this are
2426 not treated as errors. Note that dependencies appear only in class
2427 declarations, and not in any other part of the language. In particular, the
2428 syntax for instance declarations, class constraints, and types is completely
2429 unchanged.
2430 </para>
2431 <para>
2432 By including dependencies in a class declaration, we provide a mechanism for
2433 the programmer to specify each multiple parameter class more precisely. The
2434 compiler, on the other hand, is responsible for ensuring that the set of
2435 instances that are in scope at any given point in the program is consistent
2436 with any declared dependencies. For example, the following pair of instance
2437 declarations cannot appear together in the same scope because they violate the
2438 dependency for D, even though either one on its own would be acceptable: 
2439 <programlisting>
2440    instance D Bool Int where ...
2441    instance D Bool Char where ...
2442 </programlisting>
2443 Note also that the following declaration is not allowed, even by itself: 
2444 <programlisting>
2445    instance D [a] b where ...
2446 </programlisting>
2447 The problem here is that this instance would allow one particular choice of [a]
2448 to be associated with more than one choice for b, which contradicts the
2449 dependency specified in the definition of D. More generally, this means that,
2450 in any instance of the form: 
2451 <programlisting>
2452    instance D t s where ...
2453 </programlisting>
2454 for some particular types t and s, the only variables that can appear in s are
2455 the ones that appear in t, and hence, if the type t is known, then s will be
2456 uniquely determined.
2457 </para>
2458 <para>
2459 The benefit of including dependency information is that it allows us to define
2460 more general multiple parameter classes, without ambiguity problems, and with
2461 the benefit of more accurate types. To illustrate this, we return to the
2462 collection class example, and annotate the original definition of <literal>Collects</literal>
2463 with a simple dependency: 
2464 <programlisting>
2465    class Collects e ce | ce -> e where
2466       empty  :: ce
2467       insert :: e -> ce -> ce
2468       member :: e -> ce -> Bool
2469 </programlisting>
2470 The dependency <literal>ce -&gt; e</literal> here specifies that the type e of elements is uniquely
2471 determined by the type of the collection ce. Note that both parameters of
2472 Collects are of kind *; there are no constructor classes here. Note too that
2473 all of the instances of Collects that we gave earlier can be used
2474 together with this new definition.
2475 </para>
2476 <para>
2477 What about the ambiguity problems that we encountered with the original
2478 definition? The empty function still has type Collects e ce => ce, but it is no
2479 longer necessary to regard that as an ambiguous type: Although the variable e
2480 does not appear on the right of the => symbol, the dependency for class
2481 Collects tells us that it is uniquely determined by ce, which does appear on
2482 the right of the => symbol. Hence the context in which empty is used can still
2483 give enough information to determine types for both ce and e, without
2484 ambiguity. More generally, we need only regard a type as ambiguous if it
2485 contains a variable on the left of the => that is not uniquely determined
2486 (either directly or indirectly) by the variables on the right.
2487 </para>
2488 <para>
2489 Dependencies also help to produce more accurate types for user defined
2490 functions, and hence to provide earlier detection of errors, and less cluttered
2491 types for programmers to work with. Recall the previous definition for a
2492 function f: 
2493 <programlisting>
2494    f x y = insert x y = insert x . insert y
2495 </programlisting>
2496 for which we originally obtained a type: 
2497 <programlisting>
2498    f :: (Collects a c, Collects b c) => a -> b -> c -> c
2499 </programlisting>
2500 Given the dependency information that we have for Collects, however, we can
2501 deduce that a and b must be equal because they both appear as the second
2502 parameter in a Collects constraint with the same first parameter c. Hence we
2503 can infer a shorter and more accurate type for f: 
2504 <programlisting>
2505    f :: (Collects a c) => a -> a -> c -> c
2506 </programlisting>
2507 In a similar way, the earlier definition of g will now be flagged as a type error.
2508 </para>
2509 <para>
2510 Although we have given only a few examples here, it should be clear that the
2511 addition of dependency information can help to make multiple parameter classes
2512 more useful in practice, avoiding ambiguity problems, and allowing more general
2513 sets of instance declarations.
2514 </para>
2515 </sect4>
2516 </sect3>
2517 </sect2>
2518
2519 <sect2 id="instance-decls">
2520 <title>Instance declarations</title>
2521
2522 <sect3 id="instance-rules">
2523 <title>Relaxed rules for instance declarations</title>
2524
2525 <para>An instance declaration has the form
2526 <screen>
2527   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 ...
2528 </screen>
2529 The part before the "<literal>=&gt;</literal>" is the
2530 <emphasis>context</emphasis>, while the part after the
2531 "<literal>=&gt;</literal>" is the <emphasis>head</emphasis> of the instance declaration.
2532 </para>
2533
2534 <para>
2535 In Haskell 98 the head of an instance declaration
2536 must be of the form <literal>C (T a1 ... an)</literal>, where
2537 <literal>C</literal> is the class, <literal>T</literal> is a type constructor,
2538 and the <literal>a1 ... an</literal> are distinct type variables.
2539 Furthermore, the assertions in the context of the instance declaration
2540 must be of the form <literal>C a</literal> where <literal>a</literal>
2541 is a type variable that occurs in the head.
2542 </para>
2543 <para>
2544 The <option>-fglasgow-exts</option> flag loosens these restrictions
2545 considerably.  Firstly, multi-parameter type classes are permitted.  Secondly,
2546 the context and head of the instance declaration can each consist of arbitrary
2547 (well-kinded) assertions <literal>(C t1 ... tn)</literal> subject only to the
2548 following rules:
2549 <orderedlist>
2550 <listitem><para>
2551 The Paterson Conditions: for each assertion in the context
2552 <orderedlist>
2553 <listitem><para>No type variable has more occurrences in the assertion than in the head</para></listitem>
2554 <listitem><para>The assertion has fewer constructors and variables (taken together
2555       and counting repetitions) than the head</para></listitem>
2556 </orderedlist>
2557 </para></listitem>
2558
2559 <listitem><para>The Coverage Condition.  For each functional dependency,
2560 <replaceable>tvs</replaceable><subscript>left</subscript> <literal>-&gt;</literal>
2561 <replaceable>tvs</replaceable><subscript>right</subscript>,  of the class,
2562 every type variable in
2563 S(<replaceable>tvs</replaceable><subscript>right</subscript>) must appear in 
2564 S(<replaceable>tvs</replaceable><subscript>left</subscript>), where S is the
2565 substitution mapping each type variable in the class declaration to the
2566 corresponding type in the instance declaration.
2567 </para></listitem>
2568 </orderedlist>
2569 These restrictions ensure that context reduction terminates: each reduction
2570 step makes the problem smaller by at least one
2571 constructor.  Both the Paterson Conditions and the Coverage Condition are lifted 
2572 if you give the <option>-fallow-undecidable-instances</option> 
2573 flag (<xref linkend="undecidable-instances"/>).
2574 You can find lots of background material about the reason for these
2575 restrictions in the paper <ulink
2576 url="http://research.microsoft.com/%7Esimonpj/papers/fd%2Dchr/">
2577 Understanding functional dependencies via Constraint Handling Rules</ulink>.
2578 </para>
2579 <para>
2580 For example, these are OK:
2581 <programlisting>
2582   instance C Int [a]          -- Multiple parameters
2583   instance Eq (S [a])         -- Structured type in head
2584
2585       -- Repeated type variable in head
2586   instance C4 a a => C4 [a] [a] 
2587   instance Stateful (ST s) (MutVar s)
2588
2589       -- Head can consist of type variables only
2590   instance C a
2591   instance (Eq a, Show b) => C2 a b
2592
2593       -- Non-type variables in context
2594   instance Show (s a) => Show (Sized s a)
2595   instance C2 Int a => C3 Bool [a]
2596   instance C2 Int a => C3 [a] b
2597 </programlisting>
2598 But these are not:
2599 <programlisting>
2600       -- Context assertion no smaller than head
2601   instance C a => C a where ...
2602       -- (C b b) has more more occurrences of b than the head
2603   instance C b b => Foo [b] where ...
2604 </programlisting>
2605 </para>
2606
2607 <para>
2608 The same restrictions apply to instances generated by
2609 <literal>deriving</literal> clauses.  Thus the following is accepted:
2610 <programlisting>
2611   data MinHeap h a = H a (h a)
2612     deriving (Show)
2613 </programlisting>
2614 because the derived instance
2615 <programlisting>
2616   instance (Show a, Show (h a)) => Show (MinHeap h a)
2617 </programlisting>
2618 conforms to the above rules.
2619 </para>
2620
2621 <para>
2622 A useful idiom permitted by the above rules is as follows.
2623 If one allows overlapping instance declarations then it's quite
2624 convenient to have a "default instance" declaration that applies if
2625 something more specific does not:
2626 <programlisting>
2627   instance C a where
2628     op = ... -- Default
2629 </programlisting>
2630 </para>
2631 </sect3>
2632
2633 <sect3 id="undecidable-instances">
2634 <title>Undecidable instances</title>
2635
2636 <para>
2637 Sometimes even the rules of <xref linkend="instance-rules"/> are too onerous.
2638 For example, sometimes you might want to use the following to get the
2639 effect of a "class synonym":
2640 <programlisting>
2641   class (C1 a, C2 a, C3 a) => C a where { }
2642
2643   instance (C1 a, C2 a, C3 a) => C a where { }
2644 </programlisting>
2645 This allows you to write shorter signatures:
2646 <programlisting>
2647   f :: C a => ...
2648 </programlisting>
2649 instead of
2650 <programlisting>
2651   f :: (C1 a, C2 a, C3 a) => ...
2652 </programlisting>
2653 The restrictions on functional dependencies (<xref
2654 linkend="functional-dependencies"/>) are particularly troublesome.
2655 It is tempting to introduce type variables in the context that do not appear in
2656 the head, something that is excluded by the normal rules. For example:
2657 <programlisting>
2658   class HasConverter a b | a -> b where
2659      convert :: a -> b
2660    
2661   data Foo a = MkFoo a
2662
2663   instance (HasConverter a b,Show b) => Show (Foo a) where
2664      show (MkFoo value) = show (convert value)
2665 </programlisting>
2666 This is dangerous territory, however. Here, for example, is a program that would make the
2667 typechecker loop:
2668 <programlisting>
2669   class D a
2670   class F a b | a->b
2671   instance F [a] [[a]]
2672   instance (D c, F a c) => D [a]   -- 'c' is not mentioned in the head
2673 </programlisting>  
2674 Similarly, it can be tempting to lift the coverage condition:
2675 <programlisting>
2676   class Mul a b c | a b -> c where
2677         (.*.) :: a -> b -> c
2678
2679   instance Mul Int Int Int where (.*.) = (*)
2680   instance Mul Int Float Float where x .*. y = fromIntegral x * y
2681   instance Mul a b c => Mul a [b] [c] where x .*. v = map (x.*.) v
2682 </programlisting>
2683 The third instance declaration does not obey the coverage condition;
2684 and indeed the (somewhat strange) definition:
2685 <programlisting>
2686   f = \ b x y -> if b then x .*. [y] else y
2687 </programlisting>
2688 makes instance inference go into a loop, because it requires the constraint
2689 <literal>(Mul a [b] b)</literal>.
2690 </para>
2691 <para>
2692 Nevertheless, GHC allows you to experiment with more liberal rules.  If you use
2693 the experimental flag <option>-fallow-undecidable-instances</option>
2694 <indexterm><primary>-fallow-undecidable-instances
2695 option</primary></indexterm>, both the Paterson Conditions and the Coverage Condition
2696 (described in <xref linkend="instance-rules"/>) are lifted.  Termination is ensured by having a
2697 fixed-depth recursion stack.  If you exceed the stack depth you get a
2698 sort of backtrace, and the opportunity to increase the stack depth
2699 with <option>-fcontext-stack=</option><emphasis>N</emphasis>.
2700 </para>
2701
2702 </sect3>
2703
2704
2705 <sect3 id="instance-overlap">
2706 <title>Overlapping instances</title>
2707 <para>
2708 In general, <emphasis>GHC requires that that it be unambiguous which instance
2709 declaration
2710 should be used to resolve a type-class constraint</emphasis>. This behaviour
2711 can be modified by two flags: <option>-fallow-overlapping-instances</option>
2712 <indexterm><primary>-fallow-overlapping-instances
2713 </primary></indexterm> 
2714 and <option>-fallow-incoherent-instances</option>
2715 <indexterm><primary>-fallow-incoherent-instances
2716 </primary></indexterm>, as this section discusses.  Both these
2717 flags are dynamic flags, and can be set on a per-module basis, using 
2718 an <literal>OPTIONS_GHC</literal> pragma if desired (<xref linkend="source-file-options"/>).</para>
2719 <para>
2720 When GHC tries to resolve, say, the constraint <literal>C Int Bool</literal>,
2721 it tries to match every instance declaration against the
2722 constraint,
2723 by instantiating the head of the instance declaration.  For example, consider
2724 these declarations:
2725 <programlisting>
2726   instance context1 => C Int a     where ...  -- (A)
2727   instance context2 => C a   Bool  where ...  -- (B)
2728   instance context3 => C Int [a]   where ...  -- (C)
2729   instance context4 => C Int [Int] where ...  -- (D)
2730 </programlisting>
2731 The instances (A) and (B) match the constraint <literal>C Int Bool</literal>, 
2732 but (C) and (D) do not.  When matching, GHC takes
2733 no account of the context of the instance declaration
2734 (<literal>context1</literal> etc).
2735 GHC's default behaviour is that <emphasis>exactly one instance must match the
2736 constraint it is trying to resolve</emphasis>.  
2737 It is fine for there to be a <emphasis>potential</emphasis> of overlap (by
2738 including both declarations (A) and (B), say); an error is only reported if a 
2739 particular constraint matches more than one.
2740 </para>
2741
2742 <para>
2743 The <option>-fallow-overlapping-instances</option> flag instructs GHC to allow
2744 more than one instance to match, provided there is a most specific one.  For
2745 example, the constraint <literal>C Int [Int]</literal> matches instances (A),
2746 (C) and (D), but the last is more specific, and hence is chosen.  If there is no
2747 most-specific match, the program is rejected.
2748 </para>
2749 <para>
2750 However, GHC is conservative about committing to an overlapping instance.  For example:
2751 <programlisting>
2752   f :: [b] -> [b]
2753   f x = ...
2754 </programlisting>
2755 Suppose that from the RHS of <literal>f</literal> we get the constraint
2756 <literal>C Int [b]</literal>.  But
2757 GHC does not commit to instance (C), because in a particular
2758 call of <literal>f</literal>, <literal>b</literal> might be instantiate 
2759 to <literal>Int</literal>, in which case instance (D) would be more specific still.
2760 So GHC rejects the program.  If you add the flag <option>-fallow-incoherent-instances</option>,
2761 GHC will instead pick (C), without complaining about 
2762 the problem of subsequent instantiations.
2763 </para>
2764 <para>
2765 The willingness to be overlapped or incoherent is a property of 
2766 the <emphasis>instance declaration</emphasis> itself, controlled by the
2767 presence or otherwise of the <option>-fallow-overlapping-instances</option> 
2768 and <option>-fallow-incoherent-instances</option> flags when that mdodule is
2769 being defined.  Neither flag is required in a module that imports and uses the
2770 instance declaration.  Specifically, during the lookup process:
2771 <itemizedlist>
2772 <listitem><para>
2773 An instance declaration is ignored during the lookup process if (a) a more specific
2774 match is found, and (b) the instance declaration was compiled with 
2775 <option>-fallow-overlapping-instances</option>.  The flag setting for the
2776 more-specific instance does not matter.
2777 </para></listitem>
2778 <listitem><para>
2779 Suppose an instance declaration does not matche the constraint being looked up, but
2780 does unify with it, so that it might match when the constraint is further 
2781 instantiated.  Usually GHC will regard this as a reason for not committing to
2782 some other constraint.  But if the instance declaration was compiled with
2783 <option>-fallow-incoherent-instances</option>, GHC will skip the "does-it-unify?" 
2784 check for that declaration.
2785 </para></listitem>
2786 </itemizedlist>
2787 These rules make it possible for a library author to design a library that relies on 
2788 overlapping instances without the library client having to know.  
2789 </para>
2790 <para>
2791 If an instance declaration is compiled without
2792 <option>-fallow-overlapping-instances</option>,
2793 then that instance can never be overlapped.  This could perhaps be
2794 inconvenient.  Perhaps the rule should instead say that the
2795 <emphasis>overlapping</emphasis> instance declaration should be compiled in
2796 this way, rather than the <emphasis>overlapped</emphasis> one.  Perhaps overlap
2797 at a usage site should be permitted regardless of how the instance declarations
2798 are compiled, if the <option>-fallow-overlapping-instances</option> flag is
2799 used at the usage site.  (Mind you, the exact usage site can occasionally be
2800 hard to pin down.)  We are interested to receive feedback on these points.
2801 </para>
2802 <para>The <option>-fallow-incoherent-instances</option> flag implies the
2803 <option>-fallow-overlapping-instances</option> flag, but not vice versa.
2804 </para>
2805 </sect3>
2806
2807 <sect3>
2808 <title>Type synonyms in the instance head</title>
2809
2810 <para>
2811 <emphasis>Unlike Haskell 98, instance heads may use type
2812 synonyms</emphasis>.  (The instance "head" is the bit after the "=>" in an instance decl.)
2813 As always, using a type synonym is just shorthand for
2814 writing the RHS of the type synonym definition.  For example:
2815
2816
2817 <programlisting>
2818   type Point = (Int,Int)
2819   instance C Point   where ...
2820   instance C [Point] where ...
2821 </programlisting>
2822
2823
2824 is legal.  However, if you added
2825
2826
2827 <programlisting>
2828   instance C (Int,Int) where ...
2829 </programlisting>
2830
2831
2832 as well, then the compiler will complain about the overlapping
2833 (actually, identical) instance declarations.  As always, type synonyms
2834 must be fully applied.  You cannot, for example, write:
2835
2836
2837 <programlisting>
2838   type P a = [[a]]
2839   instance Monad P where ...
2840 </programlisting>
2841
2842
2843 This design decision is independent of all the others, and easily
2844 reversed, but it makes sense to me.
2845
2846 </para>
2847 </sect3>
2848
2849
2850 </sect2>
2851
2852 <sect2 id="type-restrictions">
2853 <title>Type signatures</title>
2854
2855 <sect3><title>The context of a type signature</title>
2856 <para>
2857 Unlike Haskell 98, constraints in types do <emphasis>not</emphasis> have to be of
2858 the form <emphasis>(class type-variable)</emphasis> or
2859 <emphasis>(class (type-variable type-variable ...))</emphasis>.  Thus,
2860 these type signatures are perfectly OK
2861 <programlisting>
2862   g :: Eq [a] => ...
2863   g :: Ord (T a ()) => ...
2864 </programlisting>
2865 </para>
2866 <para>
2867 GHC imposes the following restrictions on the constraints in a type signature.
2868 Consider the type:
2869
2870 <programlisting>
2871   forall tv1..tvn (c1, ...,cn) => type
2872 </programlisting>
2873
2874 (Here, we write the "foralls" explicitly, although the Haskell source
2875 language omits them; in Haskell 98, all the free type variables of an
2876 explicit source-language type signature are universally quantified,
2877 except for the class type variables in a class declaration.  However,
2878 in GHC, you can give the foralls if you want.  See <xref linkend="universal-quantification"/>).
2879 </para>
2880
2881 <para>
2882
2883 <orderedlist>
2884 <listitem>
2885
2886 <para>
2887  <emphasis>Each universally quantified type variable
2888 <literal>tvi</literal> must be reachable from <literal>type</literal></emphasis>.
2889
2890 A type variable <literal>a</literal> is "reachable" if it it appears
2891 in the same constraint as either a type variable free in in
2892 <literal>type</literal>, or another reachable type variable.  
2893 A value with a type that does not obey 
2894 this reachability restriction cannot be used without introducing
2895 ambiguity; that is why the type is rejected.
2896 Here, for example, is an illegal type:
2897
2898
2899 <programlisting>
2900   forall a. Eq a => Int
2901 </programlisting>
2902
2903
2904 When a value with this type was used, the constraint <literal>Eq tv</literal>
2905 would be introduced where <literal>tv</literal> is a fresh type variable, and
2906 (in the dictionary-translation implementation) the value would be
2907 applied to a dictionary for <literal>Eq tv</literal>.  The difficulty is that we
2908 can never know which instance of <literal>Eq</literal> to use because we never
2909 get any more information about <literal>tv</literal>.
2910 </para>
2911 <para>
2912 Note
2913 that the reachability condition is weaker than saying that <literal>a</literal> is
2914 functionally dependent on a type variable free in
2915 <literal>type</literal> (see <xref
2916 linkend="functional-dependencies"/>).  The reason for this is there
2917 might be a "hidden" dependency, in a superclass perhaps.  So
2918 "reachable" is a conservative approximation to "functionally dependent".
2919 For example, consider:
2920 <programlisting>
2921   class C a b | a -> b where ...
2922   class C a b => D a b where ...
2923   f :: forall a b. D a b => a -> a
2924 </programlisting>
2925 This is fine, because in fact <literal>a</literal> does functionally determine <literal>b</literal>
2926 but that is not immediately apparent from <literal>f</literal>'s type.
2927 </para>
2928 </listitem>
2929 <listitem>
2930
2931 <para>
2932  <emphasis>Every constraint <literal>ci</literal> must mention at least one of the
2933 universally quantified type variables <literal>tvi</literal></emphasis>.
2934
2935 For example, this type is OK because <literal>C a b</literal> mentions the
2936 universally quantified type variable <literal>b</literal>:
2937
2938
2939 <programlisting>
2940   forall a. C a b => burble
2941 </programlisting>
2942
2943
2944 The next type is illegal because the constraint <literal>Eq b</literal> does not
2945 mention <literal>a</literal>:
2946
2947
2948 <programlisting>
2949   forall a. Eq b => burble
2950 </programlisting>
2951
2952
2953 The reason for this restriction is milder than the other one.  The
2954 excluded types are never useful or necessary (because the offending
2955 context doesn't need to be witnessed at this point; it can be floated
2956 out).  Furthermore, floating them out increases sharing. Lastly,
2957 excluding them is a conservative choice; it leaves a patch of
2958 territory free in case we need it later.
2959
2960 </para>
2961 </listitem>
2962
2963 </orderedlist>
2964
2965 </para>
2966 </sect3>
2967
2968
2969
2970 </sect2>
2971
2972 <sect2 id="implicit-parameters">
2973 <title>Implicit parameters</title>
2974
2975 <para> Implicit parameters are implemented as described in 
2976 "Implicit parameters: dynamic scoping with static types", 
2977 J Lewis, MB Shields, E Meijer, J Launchbury,
2978 27th ACM Symposium on Principles of Programming Languages (POPL'00),
2979 Boston, Jan 2000.
2980 </para>
2981
2982 <para>(Most of the following, stil rather incomplete, documentation is
2983 due to Jeff Lewis.)</para>
2984
2985 <para>Implicit parameter support is enabled with the option
2986 <option>-fimplicit-params</option>.</para>
2987
2988 <para>
2989 A variable is called <emphasis>dynamically bound</emphasis> when it is bound by the calling
2990 context of a function and <emphasis>statically bound</emphasis> when bound by the callee's
2991 context. In Haskell, all variables are statically bound. Dynamic
2992 binding of variables is a notion that goes back to Lisp, but was later
2993 discarded in more modern incarnations, such as Scheme. Dynamic binding
2994 can be very confusing in an untyped language, and unfortunately, typed
2995 languages, in particular Hindley-Milner typed languages like Haskell,
2996 only support static scoping of variables.
2997 </para>
2998 <para>
2999 However, by a simple extension to the type class system of Haskell, we
3000 can support dynamic binding. Basically, we express the use of a
3001 dynamically bound variable as a constraint on the type. These
3002 constraints lead to types of the form <literal>(?x::t') => t</literal>, which says "this
3003 function uses a dynamically-bound variable <literal>?x</literal> 
3004 of type <literal>t'</literal>". For
3005 example, the following expresses the type of a sort function,
3006 implicitly parameterized by a comparison function named <literal>cmp</literal>.
3007 <programlisting>
3008   sort :: (?cmp :: a -> a -> Bool) => [a] -> [a]
3009 </programlisting>
3010 The dynamic binding constraints are just a new form of predicate in the type class system.
3011 </para>
3012 <para>
3013 An implicit parameter occurs in an expression using the special form <literal>?x</literal>, 
3014 where <literal>x</literal> is
3015 any valid identifier (e.g. <literal>ord ?x</literal> is a valid expression). 
3016 Use of this construct also introduces a new
3017 dynamic-binding constraint in the type of the expression. 
3018 For example, the following definition
3019 shows how we can define an implicitly parameterized sort function in
3020 terms of an explicitly parameterized <literal>sortBy</literal> function:
3021 <programlisting>
3022   sortBy :: (a -> a -> Bool) -> [a] -> [a]
3023
3024   sort   :: (?cmp :: a -> a -> Bool) => [a] -> [a]
3025   sort    = sortBy ?cmp
3026 </programlisting>
3027 </para>
3028
3029 <sect3>
3030 <title>Implicit-parameter type constraints</title>
3031 <para>
3032 Dynamic binding constraints behave just like other type class
3033 constraints in that they are automatically propagated. Thus, when a
3034 function is used, its implicit parameters are inherited by the
3035 function that called it. For example, our <literal>sort</literal> function might be used
3036 to pick out the least value in a list:
3037 <programlisting>
3038   least   :: (?cmp :: a -> a -> Bool) => [a] -> a
3039   least xs = head (sort xs)
3040 </programlisting>
3041 Without lifting a finger, the <literal>?cmp</literal> parameter is
3042 propagated to become a parameter of <literal>least</literal> as well. With explicit
3043 parameters, the default is that parameters must always be explicit
3044 propagated. With implicit parameters, the default is to always
3045 propagate them.
3046 </para>
3047 <para>
3048 An implicit-parameter type constraint differs from other type class constraints in the
3049 following way: All uses of a particular implicit parameter must have
3050 the same type. This means that the type of <literal>(?x, ?x)</literal> 
3051 is <literal>(?x::a) => (a,a)</literal>, and not 
3052 <literal>(?x::a, ?x::b) => (a, b)</literal>, as would be the case for type
3053 class constraints.
3054 </para>
3055
3056 <para> You can't have an implicit parameter in the context of a class or instance
3057 declaration.  For example, both these declarations are illegal:
3058 <programlisting>
3059   class (?x::Int) => C a where ...
3060   instance (?x::a) => Foo [a] where ...
3061 </programlisting>
3062 Reason: exactly which implicit parameter you pick up depends on exactly where
3063 you invoke a function. But the ``invocation'' of instance declarations is done
3064 behind the scenes by the compiler, so it's hard to figure out exactly where it is done.
3065 Easiest thing is to outlaw the offending types.</para>
3066 <para>
3067 Implicit-parameter constraints do not cause ambiguity.  For example, consider:
3068 <programlisting>
3069    f :: (?x :: [a]) => Int -> Int
3070    f n = n + length ?x
3071
3072    g :: (Read a, Show a) => String -> String
3073    g s = show (read s)
3074 </programlisting>
3075 Here, <literal>g</literal> has an ambiguous type, and is rejected, but <literal>f</literal>
3076 is fine.  The binding for <literal>?x</literal> at <literal>f</literal>'s call site is 
3077 quite unambiguous, and fixes the type <literal>a</literal>.
3078 </para>
3079 </sect3>
3080
3081 <sect3>
3082 <title>Implicit-parameter bindings</title>
3083
3084 <para>
3085 An implicit parameter is <emphasis>bound</emphasis> using the standard
3086 <literal>let</literal> or <literal>where</literal> binding forms.
3087 For example, we define the <literal>min</literal> function by binding
3088 <literal>cmp</literal>.
3089 <programlisting>
3090   min :: [a] -> a
3091   min  = let ?cmp = (&lt;=) in least
3092 </programlisting>
3093 </para>
3094 <para>
3095 A group of implicit-parameter bindings may occur anywhere a normal group of Haskell
3096 bindings can occur, except at top level.  That is, they can occur in a <literal>let</literal> 
3097 (including in a list comprehension, or do-notation, or pattern guards), 
3098 or a <literal>where</literal> clause.
3099 Note the following points:
3100 <itemizedlist>
3101 <listitem><para>
3102 An implicit-parameter binding group must be a
3103 collection of simple bindings to implicit-style variables (no
3104 function-style bindings, and no type signatures); these bindings are
3105 neither polymorphic or recursive.  
3106 </para></listitem>
3107 <listitem><para>
3108 You may not mix implicit-parameter bindings with ordinary bindings in a 
3109 single <literal>let</literal>
3110 expression; use two nested <literal>let</literal>s instead.
3111 (In the case of <literal>where</literal> you are stuck, since you can't nest <literal>where</literal> clauses.)
3112 </para></listitem>
3113
3114 <listitem><para>
3115 You may put multiple implicit-parameter bindings in a
3116 single binding group; but they are <emphasis>not</emphasis> treated
3117 as a mutually recursive group (as ordinary <literal>let</literal> bindings are).
3118 Instead they are treated as a non-recursive group, simultaneously binding all the implicit
3119 parameter.  The bindings are not nested, and may be re-ordered without changing
3120 the meaning of the program.
3121 For example, consider:
3122 <programlisting>
3123   f t = let { ?x = t; ?y = ?x+(1::Int) } in ?x + ?y
3124 </programlisting>
3125 The use of <literal>?x</literal> in the binding for <literal>?y</literal> does not "see"
3126 the binding for <literal>?x</literal>, so the type of <literal>f</literal> is
3127 <programlisting>
3128   f :: (?x::Int) => Int -> Int
3129 </programlisting>
3130 </para></listitem>
3131 </itemizedlist>
3132 </para>
3133
3134 </sect3>
3135
3136 <sect3><title>Implicit parameters and polymorphic recursion</title>
3137
3138 <para>
3139 Consider these two definitions:
3140 <programlisting>
3141   len1 :: [a] -> Int
3142   len1 xs = let ?acc = 0 in len_acc1 xs
3143
3144   len_acc1 [] = ?acc
3145   len_acc1 (x:xs) = let ?acc = ?acc + (1::Int) in len_acc1 xs
3146
3147   ------------
3148
3149   len2 :: [a] -> Int
3150   len2 xs = let ?acc = 0 in len_acc2 xs
3151
3152   len_acc2 :: (?acc :: Int) => [a] -> Int
3153   len_acc2 [] = ?acc
3154   len_acc2 (x:xs) = let ?acc = ?acc + (1::Int) in len_acc2 xs
3155 </programlisting>
3156 The only difference between the two groups is that in the second group
3157 <literal>len_acc</literal> is given a type signature.
3158 In the former case, <literal>len_acc1</literal> is monomorphic in its own
3159 right-hand side, so the implicit parameter <literal>?acc</literal> is not
3160 passed to the recursive call.  In the latter case, because <literal>len_acc2</literal>
3161 has a type signature, the recursive call is made to the
3162 <emphasis>polymoprhic</emphasis> version, which takes <literal>?acc</literal>
3163 as an implicit parameter.  So we get the following results in GHCi:
3164 <programlisting>
3165   Prog> len1 "hello"
3166   0
3167   Prog> len2 "hello"
3168   5
3169 </programlisting>
3170 Adding a type signature dramatically changes the result!  This is a rather
3171 counter-intuitive phenomenon, worth watching out for.
3172 </para>
3173 </sect3>
3174
3175 <sect3><title>Implicit parameters and monomorphism</title>
3176
3177 <para>GHC applies the dreaded Monomorphism Restriction (section 4.5.5 of the
3178 Haskell Report) to implicit parameters.  For example, consider:
3179 <programlisting>
3180  f :: Int -> Int
3181   f v = let ?x = 0     in
3182         let y = ?x + v in
3183         let ?x = 5     in
3184         y
3185 </programlisting>
3186 Since the binding for <literal>y</literal> falls under the Monomorphism
3187 Restriction it is not generalised, so the type of <literal>y</literal> is
3188 simply <literal>Int</literal>, not <literal>(?x::Int) => Int</literal>.
3189 Hence, <literal>(f 9)</literal> returns result <literal>9</literal>.
3190 If you add a type signature for <literal>y</literal>, then <literal>y</literal>
3191 will get type <literal>(?x::Int) => Int</literal>, so the occurrence of
3192 <literal>y</literal> in the body of the <literal>let</literal> will see the
3193 inner binding of <literal>?x</literal>, so <literal>(f 9)</literal> will return
3194 <literal>14</literal>.
3195 </para>
3196 </sect3>
3197 </sect2>
3198
3199     <!--   ======================= COMMENTED OUT ========================
3200
3201     We intend to remove linear implicit parameters, so I'm at least removing
3202     them from the 6.6 user manual
3203
3204 <sect2 id="linear-implicit-parameters">
3205 <title>Linear implicit parameters</title>
3206 <para>
3207 Linear implicit parameters are an idea developed by Koen Claessen,
3208 Mark Shields, and Simon PJ.  They address the long-standing
3209 problem that monads seem over-kill for certain sorts of problem, notably:
3210 </para>
3211 <itemizedlist>
3212 <listitem> <para> distributing a supply of unique names </para> </listitem>
3213 <listitem> <para> distributing a supply of random numbers </para> </listitem>
3214 <listitem> <para> distributing an oracle (as in QuickCheck) </para> </listitem>
3215 </itemizedlist>
3216
3217 <para>
3218 Linear implicit parameters are just like ordinary implicit parameters,
3219 except that they are "linear"; that is, they cannot be copied, and
3220 must be explicitly "split" instead.  Linear implicit parameters are
3221 written '<literal>%x</literal>' instead of '<literal>?x</literal>'.  
3222 (The '/' in the '%' suggests the split!)
3223 </para>
3224 <para>
3225 For example:
3226 <programlisting>
3227     import GHC.Exts( Splittable )
3228
3229     data NameSupply = ...
3230     
3231     splitNS :: NameSupply -> (NameSupply, NameSupply)
3232     newName :: NameSupply -> Name
3233
3234     instance Splittable NameSupply where
3235         split = splitNS
3236
3237
3238     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
3239     f env (Lam x e) = Lam x' (f env e)
3240                     where
3241                       x'   = newName %ns
3242                       env' = extend env x x'
3243     ...more equations for f...
3244 </programlisting>
3245 Notice that the implicit parameter %ns is consumed 
3246 <itemizedlist>
3247 <listitem> <para> once by the call to <literal>newName</literal> </para> </listitem>
3248 <listitem> <para> once by the recursive call to <literal>f</literal> </para></listitem>
3249 </itemizedlist>
3250 </para>
3251 <para>
3252 So the translation done by the type checker makes
3253 the parameter explicit:
3254 <programlisting>
3255     f :: NameSupply -> Env -> Expr -> Expr
3256     f ns env (Lam x e) = Lam x' (f ns1 env e)
3257                        where
3258                          (ns1,ns2) = splitNS ns
3259                          x' = newName ns2
3260                          env = extend env x x'
3261 </programlisting>
3262 Notice the call to 'split' introduced by the type checker.
3263 How did it know to use 'splitNS'?  Because what it really did
3264 was to introduce a call to the overloaded function 'split',
3265 defined by the class <literal>Splittable</literal>:
3266 <programlisting>
3267         class Splittable a where
3268           split :: a -> (a,a)
3269 </programlisting>
3270 The instance for <literal>Splittable NameSupply</literal> tells GHC how to implement
3271 split for name supplies.  But we can simply write
3272 <programlisting>
3273         g x = (x, %ns, %ns)
3274 </programlisting>
3275 and GHC will infer
3276 <programlisting>
3277         g :: (Splittable a, %ns :: a) => b -> (b,a,a)
3278 </programlisting>
3279 The <literal>Splittable</literal> class is built into GHC.  It's exported by module 
3280 <literal>GHC.Exts</literal>.
3281 </para>
3282 <para>
3283 Other points:
3284 <itemizedlist>
3285 <listitem> <para> '<literal>?x</literal>' and '<literal>%x</literal>' 
3286 are entirely distinct implicit parameters: you 
3287   can use them together and they won't intefere with each other. </para>
3288 </listitem>
3289
3290 <listitem> <para> You can bind linear implicit parameters in 'with' clauses. </para> </listitem>
3291
3292 <listitem> <para>You cannot have implicit parameters (whether linear or not)
3293   in the context of a class or instance declaration. </para></listitem>
3294 </itemizedlist>
3295 </para>
3296
3297 <sect3><title>Warnings</title>
3298
3299 <para>
3300 The monomorphism restriction is even more important than usual.
3301 Consider the example above:
3302 <programlisting>
3303     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
3304     f env (Lam x e) = Lam x' (f env e)
3305                     where
3306                       x'   = newName %ns
3307                       env' = extend env x x'
3308 </programlisting>
3309 If we replaced the two occurrences of x' by (newName %ns), which is
3310 usually a harmless thing to do, we get:
3311 <programlisting>
3312     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
3313     f env (Lam x e) = Lam (newName %ns) (f env e)
3314                     where
3315                       env' = extend env x (newName %ns)
3316 </programlisting>
3317 But now the name supply is consumed in <emphasis>three</emphasis> places
3318 (the two calls to newName,and the recursive call to f), so
3319 the result is utterly different.  Urk!  We don't even have 
3320 the beta rule.
3321 </para>
3322 <para>
3323 Well, this is an experimental change.  With implicit
3324 parameters we have already lost beta reduction anyway, and
3325 (as John Launchbury puts it) we can't sensibly reason about
3326 Haskell programs without knowing their typing.
3327 </para>
3328
3329 </sect3>
3330
3331 <sect3><title>Recursive functions</title>
3332 <para>Linear implicit parameters can be particularly tricky when you have a recursive function
3333 Consider
3334 <programlisting>
3335         foo :: %x::T => Int -> [Int]
3336         foo 0 = []
3337         foo n = %x : foo (n-1)
3338 </programlisting>
3339 where T is some type in class Splittable.</para>
3340 <para>
3341 Do you get a list of all the same T's or all different T's
3342 (assuming that split gives two distinct T's back)?
3343 </para><para>
3344 If you supply the type signature, taking advantage of polymorphic
3345 recursion, you get what you'd probably expect.  Here's the
3346 translated term, where the implicit param is made explicit:
3347 <programlisting>
3348         foo x 0 = []
3349         foo x n = let (x1,x2) = split x
3350                   in x1 : foo x2 (n-1)
3351 </programlisting>
3352 But if you don't supply a type signature, GHC uses the Hindley
3353 Milner trick of using a single monomorphic instance of the function
3354 for the recursive calls. That is what makes Hindley Milner type inference
3355 work.  So the translation becomes
3356 <programlisting>
3357         foo x = let
3358                   foom 0 = []
3359                   foom n = x : foom (n-1)
3360                 in
3361                 foom
3362 </programlisting>
3363 Result: 'x' is not split, and you get a list of identical T's.  So the
3364 semantics of the program depends on whether or not foo has a type signature.
3365 Yikes!
3366 </para><para>
3367 You may say that this is a good reason to dislike linear implicit parameters
3368 and you'd be right.  That is why they are an experimental feature. 
3369 </para>
3370 </sect3>
3371
3372 </sect2>
3373
3374 ================ END OF Linear Implicit Parameters commented out -->
3375
3376 <sect2 id="kinding">
3377 <title>Explicitly-kinded quantification</title>
3378
3379 <para>
3380 Haskell infers the kind of each type variable.  Sometimes it is nice to be able
3381 to give the kind explicitly as (machine-checked) documentation, 
3382 just as it is nice to give a type signature for a function.  On some occasions,
3383 it is essential to do so.  For example, in his paper "Restricted Data Types in Haskell" (Haskell Workshop 1999)
3384 John Hughes had to define the data type:
3385 <screen>
3386      data Set cxt a = Set [a]
3387                     | Unused (cxt a -> ())
3388 </screen>
3389 The only use for the <literal>Unused</literal> constructor was to force the correct
3390 kind for the type variable <literal>cxt</literal>.
3391 </para>
3392 <para>
3393 GHC now instead allows you to specify the kind of a type variable directly, wherever
3394 a type variable is explicitly bound.  Namely:
3395 <itemizedlist>
3396 <listitem><para><literal>data</literal> declarations:
3397 <screen>
3398   data Set (cxt :: * -> *) a = Set [a]
3399 </screen></para></listitem>
3400 <listitem><para><literal>type</literal> declarations:
3401 <screen>
3402   type T (f :: * -> *) = f Int
3403 </screen></para></listitem>
3404 <listitem><para><literal>class</literal> declarations:
3405 <screen>
3406   class (Eq a) => C (f :: * -> *) a where ...
3407 </screen></para></listitem>
3408 <listitem><para><literal>forall</literal>'s in type signatures:
3409 <screen>
3410   f :: forall (cxt :: * -> *). Set cxt Int
3411 </screen></para></listitem>
3412 </itemizedlist>
3413 </para>
3414
3415 <para>
3416 The parentheses are required.  Some of the spaces are required too, to
3417 separate the lexemes.  If you write <literal>(f::*->*)</literal> you
3418 will get a parse error, because "<literal>::*->*</literal>" is a
3419 single lexeme in Haskell.
3420 </para>
3421
3422 <para>
3423 As part of the same extension, you can put kind annotations in types
3424 as well.  Thus:
3425 <screen>
3426    f :: (Int :: *) -> Int
3427    g :: forall a. a -> (a :: *)
3428 </screen>
3429 The syntax is
3430 <screen>
3431    atype ::= '(' ctype '::' kind ')
3432 </screen>
3433 The parentheses are required.
3434 </para>
3435 </sect2>
3436
3437
3438 <sect2 id="universal-quantification">
3439 <title>Arbitrary-rank polymorphism
3440 </title>
3441
3442 <para>
3443 Haskell type signatures are implicitly quantified.  The new keyword <literal>forall</literal>
3444 allows us to say exactly what this means.  For example:
3445 </para>
3446 <para>
3447 <programlisting>
3448         g :: b -> b
3449 </programlisting>
3450 means this:
3451 <programlisting>
3452         g :: forall b. (b -> b)
3453 </programlisting>
3454 The two are treated identically.
3455 </para>
3456
3457 <para>
3458 However, GHC's type system supports <emphasis>arbitrary-rank</emphasis> 
3459 explicit universal quantification in
3460 types. 
3461 For example, all the following types are legal:
3462 <programlisting>
3463     f1 :: forall a b. a -> b -> a
3464     g1 :: forall a b. (Ord a, Eq  b) => a -> b -> a
3465
3466     f2 :: (forall a. a->a) -> Int -> Int
3467     g2 :: (forall a. Eq a => [a] -> a -> Bool) -> Int -> Int
3468
3469     f3 :: ((forall a. a->a) -> Int) -> Bool -> Bool
3470
3471     f4 :: Int -> (forall a. a -> a)
3472 </programlisting>
3473 Here, <literal>f1</literal> and <literal>g1</literal> are rank-1 types, and
3474 can be written in standard Haskell (e.g. <literal>f1 :: a->b->a</literal>).
3475 The <literal>forall</literal> makes explicit the universal quantification that
3476 is implicitly added by Haskell.
3477 </para>
3478 <para>
3479 The functions <literal>f2</literal> and <literal>g2</literal> have rank-2 types;
3480 the <literal>forall</literal> is on the left of a function arrow.  As <literal>g2</literal>
3481 shows, the polymorphic type on the left of the function arrow can be overloaded.
3482 </para>
3483 <para>
3484 The function <literal>f3</literal> has a rank-3 type;
3485 it has rank-2 types on the left of a function arrow.
3486 </para>
3487 <para>
3488 GHC allows types of arbitrary rank; you can nest <literal>forall</literal>s
3489 arbitrarily deep in function arrows.   (GHC used to be restricted to rank 2, but
3490 that restriction has now been lifted.)
3491 In particular, a forall-type (also called a "type scheme"),
3492 including an operational type class context, is legal:
3493 <itemizedlist>
3494 <listitem> <para> On the left or right (see <literal>f4</literal>, for example)
3495 of a function arrow </para> </listitem>
3496 <listitem> <para> As the argument of a constructor, or type of a field, in a data type declaration. For
3497 example, any of the <literal>f1,f2,f3,g1,g2</literal> above would be valid
3498 field type signatures.</para> </listitem>
3499 <listitem> <para> As the type of an implicit parameter </para> </listitem>
3500 <listitem> <para> In a pattern type signature (see <xref linkend="scoped-type-variables"/>) </para> </listitem>
3501 </itemizedlist>
3502 Of course <literal>forall</literal> becomes a keyword; you can't use <literal>forall</literal> as
3503 a type variable any more!
3504 </para>
3505
3506
3507 <sect3 id="univ">
3508 <title>Examples
3509 </title>
3510
3511 <para>
3512 In a <literal>data</literal> or <literal>newtype</literal> declaration one can quantify
3513 the types of the constructor arguments.  Here are several examples:
3514 </para>
3515
3516 <para>
3517
3518 <programlisting>
3519 data T a = T1 (forall b. b -> b -> b) a
3520
3521 data MonadT m = MkMonad { return :: forall a. a -> m a,
3522                           bind   :: forall a b. m a -> (a -> m b) -> m b
3523                         }
3524
3525 newtype Swizzle = MkSwizzle (Ord a => [a] -> [a])
3526 </programlisting>
3527
3528 </para>
3529
3530 <para>
3531 The constructors have rank-2 types:
3532 </para>
3533
3534 <para>
3535
3536 <programlisting>
3537 T1 :: forall a. (forall b. b -> b -> b) -> a -> T a
3538 MkMonad :: forall m. (forall a. a -> m a)
3539                   -> (forall a b. m a -> (a -> m b) -> m b)
3540                   -> MonadT m
3541 MkSwizzle :: (Ord a => [a] -> [a]) -> Swizzle
3542 </programlisting>
3543
3544 </para>
3545
3546 <para>
3547 Notice that you don't need to use a <literal>forall</literal> if there's an
3548 explicit context.  For example in the first argument of the
3549 constructor <function>MkSwizzle</function>, an implicit "<literal>forall a.</literal>" is
3550 prefixed to the argument type.  The implicit <literal>forall</literal>
3551 quantifies all type variables that are not already in scope, and are
3552 mentioned in the type quantified over.
3553 </para>
3554
3555 <para>
3556 As for type signatures, implicit quantification happens for non-overloaded
3557 types too.  So if you write this:
3558
3559 <programlisting>
3560   data T a = MkT (Either a b) (b -> b)
3561 </programlisting>
3562
3563 it's just as if you had written this:
3564
3565 <programlisting>
3566   data T a = MkT (forall b. Either a b) (forall b. b -> b)
3567 </programlisting>
3568
3569 That is, since the type variable <literal>b</literal> isn't in scope, it's
3570 implicitly universally quantified.  (Arguably, it would be better
3571 to <emphasis>require</emphasis> explicit quantification on constructor arguments
3572 where that is what is wanted.  Feedback welcomed.)
3573 </para>
3574
3575 <para>
3576 You construct values of types <literal>T1, MonadT, Swizzle</literal> by applying
3577 the constructor to suitable values, just as usual.  For example,
3578 </para>
3579
3580 <para>
3581
3582 <programlisting>
3583     a1 :: T Int
3584     a1 = T1 (\xy->x) 3
3585     
3586     a2, a3 :: Swizzle
3587     a2 = MkSwizzle sort
3588     a3 = MkSwizzle reverse
3589     
3590     a4 :: MonadT Maybe
3591     a4 = let r x = Just x
3592              b m k = case m of
3593                        Just y -> k y
3594                        Nothing -> Nothing
3595          in
3596          MkMonad r b
3597
3598     mkTs :: (forall b. b -> b -> b) -> a -> [T a]
3599     mkTs f x y = [T1 f x, T1 f y]
3600 </programlisting>
3601
3602 </para>
3603
3604 <para>
3605 The type of the argument can, as usual, be more general than the type
3606 required, as <literal>(MkSwizzle reverse)</literal> shows.  (<function>reverse</function>
3607 does not need the <literal>Ord</literal> constraint.)
3608 </para>
3609
3610 <para>
3611 When you use pattern matching, the bound variables may now have
3612 polymorphic types.  For example:
3613 </para>
3614
3615 <para>
3616
3617 <programlisting>
3618     f :: T a -> a -> (a, Char)
3619     f (T1 w k) x = (w k x, w 'c' 'd')
3620
3621     g :: (Ord a, Ord b) => Swizzle -> [a] -> (a -> b) -> [b]
3622     g (MkSwizzle s) xs f = s (map f (s xs))
3623
3624     h :: MonadT m -> [m a] -> m [a]
3625     h m [] = return m []
3626     h m (x:xs) = bind m x          $ \y ->
3627                  bind m (h m xs)   $ \ys ->
3628                  return m (y:ys)
3629 </programlisting>
3630
3631 </para>
3632
3633 <para>
3634 In the function <function>h</function> we use the record selectors <literal>return</literal>
3635 and <literal>bind</literal> to extract the polymorphic bind and return functions
3636 from the <literal>MonadT</literal> data structure, rather than using pattern
3637 matching.
3638 </para>
3639 </sect3>
3640
3641 <sect3>
3642 <title>Type inference</title>
3643
3644 <para>
3645 In general, type inference for arbitrary-rank types is undecidable.
3646 GHC uses an algorithm proposed by Odersky and Laufer ("Putting type annotations to work", POPL'96)
3647 to get a decidable algorithm by requiring some help from the programmer.
3648 We do not yet have a formal specification of "some help" but the rule is this:
3649 </para>
3650 <para>
3651 <emphasis>For a lambda-bound or case-bound variable, x, either the programmer
3652 provides an explicit polymorphic type for x, or GHC's type inference will assume
3653 that x's type has no foralls in it</emphasis>.
3654 </para>
3655 <para>
3656 What does it mean to "provide" an explicit type for x?  You can do that by 
3657 giving a type signature for x directly, using a pattern type signature
3658 (<xref linkend="scoped-type-variables"/>), thus:
3659 <programlisting>
3660      \ f :: (forall a. a->a) -> (f True, f 'c')
3661 </programlisting>
3662 Alternatively, you can give a type signature to the enclosing
3663 context, which GHC can "push down" to find the type for the variable:
3664 <programlisting>
3665      (\ f -> (f True, f 'c')) :: (forall a. a->a) -> (Bool,Char)
3666 </programlisting>
3667 Here the type signature on the expression can be pushed inwards
3668 to give a type signature for f.  Similarly, and more commonly,
3669 one can give a type signature for the function itself:
3670 <programlisting>
3671      h :: (forall a. a->a) -> (Bool,Char)
3672      h f = (f True, f 'c')
3673 </programlisting>
3674 You don't need to give a type signature if the lambda bound variable
3675 is a constructor argument.  Here is an example we saw earlier:
3676 <programlisting>
3677     f :: T a -> a -> (a, Char)
3678     f (T1 w k) x = (w k x, w 'c' 'd')
3679 </programlisting>
3680 Here we do not need to give a type signature to <literal>w</literal>, because
3681 it is an argument of constructor <literal>T1</literal> and that tells GHC all
3682 it needs to know.
3683 </para>
3684
3685 </sect3>
3686
3687
3688 <sect3 id="implicit-quant">
3689 <title>Implicit quantification</title>
3690
3691 <para>
3692 GHC performs implicit quantification as follows.  <emphasis>At the top level (only) of 
3693 user-written types, if and only if there is no explicit <literal>forall</literal>,
3694 GHC finds all the type variables mentioned in the type that are not already
3695 in scope, and universally quantifies them.</emphasis>  For example, the following pairs are 
3696 equivalent:
3697 <programlisting>
3698   f :: a -> a
3699   f :: forall a. a -> a
3700
3701   g (x::a) = let
3702                 h :: a -> b -> b
3703                 h x y = y
3704              in ...
3705   g (x::a) = let
3706                 h :: forall b. a -> b -> b
3707                 h x y = y
3708              in ...
3709 </programlisting>
3710 </para>
3711 <para>
3712 Notice that GHC does <emphasis>not</emphasis> find the innermost possible quantification
3713 point.  For example:
3714 <programlisting>
3715   f :: (a -> a) -> Int
3716            -- MEANS
3717   f :: forall a. (a -> a) -> Int
3718            -- NOT
3719   f :: (forall a. a -> a) -> Int
3720
3721
3722   g :: (Ord a => a -> a) -> Int
3723            -- MEANS the illegal type
3724   g :: forall a. (Ord a => a -> a) -> Int
3725            -- NOT
3726   g :: (forall a. Ord a => a -> a) -> Int
3727 </programlisting>
3728 The latter produces an illegal type, which you might think is silly,
3729 but at least the rule is simple.  If you want the latter type, you
3730 can write your for-alls explicitly.  Indeed, doing so is strongly advised
3731 for rank-2 types.
3732 </para>
3733 </sect3>
3734 </sect2>
3735
3736
3737 <sect2 id="impredicative-polymorphism">
3738 <title>Impredicative polymorphism
3739 </title>
3740 <para>GHC supports <emphasis>impredicative polymorphism</emphasis>.  This means
3741 that you can call a polymorphic function at a polymorphic type, and
3742 parameterise data structures over polymorphic types.  For example:
3743 <programlisting>
3744   f :: Maybe (forall a. [a] -> [a]) -> Maybe ([Int], [Char])
3745   f (Just g) = Just (g [3], g "hello")
3746   f Nothing  = Nothing
3747 </programlisting>
3748 Notice here that the <literal>Maybe</literal> type is parameterised by the
3749 <emphasis>polymorphic</emphasis> type <literal>(forall a. [a] ->
3750 [a])</literal>.
3751 </para>
3752 <para>The technical details of this extension are described in the paper
3753 <ulink url="http://research.microsoft.com/%7Esimonpj/papers/boxy">Boxy types:
3754 type inference for higher-rank types and impredicativity</ulink>,
3755 which appeared at ICFP 2006.  
3756 </para>
3757 </sect2>
3758
3759 <sect2 id="scoped-type-variables">
3760 <title>Lexically scoped type variables
3761 </title>
3762
3763 <para>
3764 GHC supports <emphasis>lexically scoped type variables</emphasis>, without
3765 which some type signatures are simply impossible to write. For example:
3766 <programlisting>
3767 f :: forall a. [a] -> [a]
3768 f xs = ys ++ ys
3769      where
3770        ys :: [a]
3771        ys = reverse xs
3772 </programlisting>
3773 The type signature for <literal>f</literal> brings the type variable <literal>a</literal> into scope; it scopes over
3774 the entire definition of <literal>f</literal>.
3775 In particular, it is in scope at the type signature for <varname>ys</varname>. 
3776 In Haskell 98 it is not possible to declare
3777 a type for <varname>ys</varname>; a major benefit of scoped type variables is that
3778 it becomes possible to do so.
3779 </para>
3780 <para>Lexically-scoped type variables are enabled by
3781 <option>-fglasgow-exts</option>.
3782 </para>
3783 <para>Note: GHC 6.6 contains substantial changes to the way that scoped type
3784 variables work, compared to earlier releases.  Read this section
3785 carefully!</para>
3786
3787 <sect3>
3788 <title>Overview</title>
3789
3790 <para>The design follows the following principles
3791 <itemizedlist>
3792 <listitem><para>A scoped type variable stands for a type <emphasis>variable</emphasis>, and not for
3793 a <emphasis>type</emphasis>. (This is a change from GHC's earlier
3794 design.)</para></listitem>
3795 <listitem><para>Furthermore, distinct lexical type variables stand for distinct
3796 type variables.  This means that every programmer-written type signature
3797 (includin one that contains free scoped type variables) denotes a
3798 <emphasis>rigid</emphasis> type; that is, the type is fully known to the type
3799 checker, and no inference is involved.</para></listitem>
3800 <listitem><para>Lexical type variables may be alpha-renamed freely, without
3801 changing the program.</para></listitem>
3802 </itemizedlist>
3803 </para>
3804 <para>
3805 A <emphasis>lexically scoped type variable</emphasis> can be bound by:
3806 <itemizedlist>
3807 <listitem><para>A declaration type signature (<xref linkend="decl-type-sigs"/>)</para></listitem>
3808 <listitem><para>An expression type signature (<xref linkend="exp-type-sigs"/>)</para></listitem>
3809 <listitem><para>A pattern type signature (<xref linkend="pattern-type-sigs"/>)</para></listitem>
3810 <listitem><para>Class and instance declarations (<xref linkend="cls-inst-scoped-tyvars"/>)</para></listitem>
3811 </itemizedlist>
3812 </para>
3813 <para>
3814 In Haskell, a programmer-written type signature is implicitly quantifed over
3815 its free type variables (<ulink
3816 url="http://haskell.org/onlinereport/decls.html#sect4.1.2">Section
3817 4.1.2</ulink> 
3818 of the Haskel Report).
3819 Lexically scoped type variables affect this implicit quantification rules
3820 as follows: any type variable that is in scope is <emphasis>not</emphasis> universally
3821 quantified. For example, if type variable <literal>a</literal> is in scope,
3822 then
3823 <programlisting>
3824   (e :: a -> a)     means     (e :: a -> a)
3825   (e :: b -> b)     means     (e :: forall b. b->b)
3826   (e :: a -> b)     means     (e :: forall b. a->b)
3827 </programlisting>
3828 </para>
3829
3830
3831 </sect3>
3832
3833
3834 <sect3 id="decl-type-sigs">
3835 <title>Declaration type signatures</title>
3836 <para>A declaration type signature that has <emphasis>explicit</emphasis>
3837 quantification (using <literal>forall</literal>) brings into scope the
3838 explicitly-quantified
3839 type variables, in the definition of the named function(s).  For example:
3840 <programlisting>
3841   f :: forall a. [a] -> [a]
3842   f (x:xs) = xs ++ [ x :: a ]
3843 </programlisting>
3844 The "<literal>forall a</literal>" brings "<literal>a</literal>" into scope in
3845 the definition of "<literal>f</literal>".
3846 </para>
3847 <para>This only happens if the quantification in <literal>f</literal>'s type
3848 signature is explicit.  For example:
3849 <programlisting>
3850   g :: [a] -> [a]
3851   g (x:xs) = xs ++ [ x :: a ]
3852 </programlisting>
3853 This program will be rejected, because "<literal>a</literal>" does not scope
3854 over the definition of "<literal>f</literal>", so "<literal>x::a</literal>"
3855 means "<literal>x::forall a. a</literal>" by Haskell's usual implicit
3856 quantification rules.
3857 </para>
3858 </sect3>
3859
3860 <sect3 id="exp-type-sigs">
3861 <title>Expression type signatures</title>
3862
3863 <para>An expression type signature that has <emphasis>explicit</emphasis>
3864 quantification (using <literal>forall</literal>) brings into scope the
3865 explicitly-quantified
3866 type variables, in the annotated expression.  For example:
3867 <programlisting>
3868   f = runST ( (op >>= \(x :: STRef s Int) -> g x) :: forall s. ST s Bool )
3869 </programlisting>
3870 Here, the type signature <literal>forall a. ST s Bool</literal> brings the 
3871 type variable <literal>s</literal> into scope, in the annotated expression 
3872 <literal>(op >>= \(x :: STRef s Int) -> g x)</literal>.
3873 </para>
3874
3875 </sect3>
3876
3877 <sect3 id="pattern-type-sigs">
3878 <title>Pattern type signatures</title>
3879 <para>
3880 A type signature may occur in any pattern; this is a <emphasis>pattern type
3881 signature</emphasis>.  
3882 For example:
3883 <programlisting>
3884   -- f and g assume that 'a' is already in scope
3885   f = \(x::Int, y::a) -> x
3886   g (x::a) = x
3887   h ((x,y) :: (Int,Bool)) = (y,x)
3888 </programlisting>
3889 In the case where all the type variables in the pattern type sigature are
3890 already in scope (i.e. bound by the enclosing context), matters are simple: the
3891 signature simply constrains the type of the pattern in the obvious way.
3892 </para>
3893 <para>
3894 There is only one situation in which you can write a pattern type signature that
3895 mentions a type variable that is not already in scope, namely in pattern match
3896 of an existential data constructor.  For example:
3897 <programlisting>
3898   data T = forall a. MkT [a]
3899
3900   k :: T -> T
3901   k (MkT [t::a]) = MkT t3
3902                  where
3903                    t3::[a] = [t,t,t]
3904 </programlisting>
3905 Here, the pattern type signature <literal>(t::a)</literal> mentions a lexical type
3906 variable that is not already in scope.  Indeed, it cannot already be in scope,
3907 because it is bound by the pattern match.  GHC's rule is that in this situation
3908 (and only then), a pattern type signature can mention a type variable that is
3909 not already in scope; the effect is to bring it into scope, standing for the
3910 existentially-bound type variable.
3911 </para>
3912 <para>
3913 If this seems a little odd, we think so too.  But we must have
3914 <emphasis>some</emphasis> way to bring such type variables into scope, else we
3915 could not name existentially-bound type variables in subequent type signatures.
3916 </para>
3917 <para>
3918 This is (now) the <emphasis>only</emphasis> situation in which a pattern type 
3919 signature is allowed to mention a lexical variable that is not already in
3920 scope.
3921 For example, both <literal>f</literal> and <literal>g</literal> would be
3922 illegal if <literal>a</literal> was not already in scope.
3923 </para>
3924
3925
3926 </sect3>
3927
3928 <!-- ==================== Commented out part about result type signatures 
3929
3930 <sect3 id="result-type-sigs">
3931 <title>Result type signatures</title>
3932
3933 <para>
3934 The result type of a function, lambda, or case expression alternative can be given a signature, thus:
3935
3936 <programlisting>
3937   {- f assumes that 'a' is already in scope -}
3938   f x y :: [a] = [x,y,x]
3939
3940   g = \ x :: [Int] -> [3,4]
3941
3942   h :: forall a. [a] -> a
3943   h xs = case xs of
3944             (y:ys) :: a -> y
3945 </programlisting>
3946 The final <literal>:: [a]</literal> after the patterns of <literal>f</literal> gives the type of 
3947 the result of the function.  Similarly, the body of the lambda in the RHS of
3948 <literal>g</literal> is <literal>[Int]</literal>, and the RHS of the case
3949 alternative in <literal>h</literal> is <literal>a</literal>.
3950 </para>
3951 <para> A result type signature never brings new type variables into scope.</para>
3952 <para>
3953 There are a couple of syntactic wrinkles.  First, notice that all three
3954 examples would parse quite differently with parentheses:
3955 <programlisting>
3956   {- f assumes that 'a' is already in scope -}
3957   f x (y :: [a]) = [x,y,x]
3958
3959   g = \ (x :: [Int]) -> [3,4]
3960
3961   h :: forall a. [a] -> a
3962   h xs = case xs of
3963             ((y:ys) :: a) -> y
3964 </programlisting>
3965 Now the signature is on the <emphasis>pattern</emphasis>; and
3966 <literal>h</literal> would certainly be ill-typed (since the pattern
3967 <literal>(y:ys)</literal> cannot have the type <literal>a</literal>.
3968
3969 Second, to avoid ambiguity, the type after the &ldquo;<literal>::</literal>&rdquo; in a result
3970 pattern signature on a lambda or <literal>case</literal> must be atomic (i.e. a single
3971 token or a parenthesised type of some sort).  To see why,
3972 consider how one would parse this:
3973 <programlisting>
3974   \ x :: a -> b -> x
3975 </programlisting>
3976 </para>
3977 </sect3>
3978
3979  -->
3980
3981 <sect3 id="cls-inst-scoped-tyvars">
3982 <title>Class and instance declarations</title>
3983 <para>
3984
3985 The type variables in the head of a <literal>class</literal> or <literal>instance</literal> declaration
3986 scope over the methods defined in the <literal>where</literal> part.  For example:
3987
3988
3989 <programlisting>
3990   class C a where
3991     op :: [a] -> a
3992
3993     op xs = let ys::[a]
3994                 ys = reverse xs
3995             in
3996             head ys
3997 </programlisting>
3998 </para>
3999 </sect3>
4000
4001 </sect2>
4002
4003
4004 <sect2 id="typing-binds">
4005 <title>Generalised typing of mutually recursive bindings</title>
4006
4007 <para>
4008 The Haskell Report specifies that a group of bindings (at top level, or in a
4009 <literal>let</literal> or <literal>where</literal>) should be sorted into
4010 strongly-connected components, and then type-checked in dependency order
4011 (<ulink url="http://haskell.org/onlinereport/decls.html#sect4.5.1">Haskell
4012 Report, Section 4.5.1</ulink>).  
4013 As each group is type-checked, any binders of the group that
4014 have
4015 an explicit type signature are put in the type environment with the specified
4016 polymorphic type,
4017 and all others are monomorphic until the group is generalised 
4018 (<ulink url="http://haskell.org/onlinereport/decls.html#sect4.5.2">Haskell Report, Section 4.5.2</ulink>).
4019 </para>
4020
4021 <para>Following a suggestion of Mark Jones, in his paper
4022 <ulink url="http://www.cse.ogi.edu/~mpj/thih/">Typing Haskell in
4023 Haskell</ulink>,
4024 GHC implements a more general scheme.  If <option>-fglasgow-exts</option> is
4025 specified:
4026 <emphasis>the dependency analysis ignores references to variables that have an explicit
4027 type signature</emphasis>.
4028 As a result of this refined dependency analysis, the dependency groups are smaller, and more bindings will
4029 typecheck.  For example, consider:
4030 <programlisting>
4031   f :: Eq a =&gt; a -> Bool
4032   f x = (x == x) || g True || g "Yes"
4033   
4034   g y = (y &lt;= y) || f True
4035 </programlisting>
4036 This is rejected by Haskell 98, but under Jones's scheme the definition for
4037 <literal>g</literal> is typechecked first, separately from that for
4038 <literal>f</literal>,
4039 because the reference to <literal>f</literal> in <literal>g</literal>'s right
4040 hand side is ingored by the dependency analysis.  Then <literal>g</literal>'s
4041 type is generalised, to get
4042 <programlisting>
4043   g :: Ord a =&gt; a -> Bool
4044 </programlisting>
4045 Now, the defintion for <literal>f</literal> is typechecked, with this type for
4046 <literal>g</literal> in the type environment.
4047 </para>
4048
4049 <para>
4050 The same refined dependency analysis also allows the type signatures of 
4051 mutually-recursive functions to have different contexts, something that is illegal in
4052 Haskell 98 (Section 4.5.2, last sentence).  With
4053 <option>-fglasgow-exts</option>
4054 GHC only insists that the type signatures of a <emphasis>refined</emphasis> group have identical
4055 type signatures; in practice this means that only variables bound by the same
4056 pattern binding must have the same context.  For example, this is fine:
4057 <programlisting>
4058   f :: Eq a =&gt; a -> Bool
4059   f x = (x == x) || g True
4060   
4061   g :: Ord a =&gt; a -> Bool
4062   g y = (y &lt;= y) || f True
4063 </programlisting>
4064 </para>
4065 </sect2>
4066
4067 <sect2 id="overloaded-strings">
4068 <title>Overloaded string literals
4069 </title>
4070
4071 <para>
4072 GHC supports <emphasis>overloaded string literals</emphasis>.  Normally a
4073 string literal has type <literal>String</literal>, but with overloaded string
4074 literals enabled (with <literal>-foverloaded-strings</literal>)
4075  a string literal has type <literal>(IsString a) => a</literal>.
4076 </para>
4077 <para>
4078 This means that the usual string syntax can be used, e.g., for packed strings
4079 and other variations of string like types.  String literals behave very much
4080 like integer literals, i.e., they can be used in both expressions and patterns.
4081 If used in a pattern the literal with be replaced by an equality test, in the same
4082 way as an integer literal is.
4083 </para>
4084 <para>
4085 The class <literal>IsString</literal> is defined as:
4086 <programlisting>
4087 class IsString a where
4088     fromString :: String -> a
4089 </programlisting>
4090 The only predefined instance is the obvious one to make strings work as usual:
4091 <programlisting>
4092 instance IsString [Char] where
4093     fromString cs = cs
4094 </programlisting>
4095 The class <literal>IsString</literal> is not in scope by default.  If you want to mention
4096 it explicitly (for exmaple, to give an instance declaration for it), you can import it
4097 from module <literal>GHC.Exts</literal>.
4098 </para>
4099 <para>
4100 Haskell's defaulting mechanism is extended to cover string literals, when <option>-foverloaded-strings</option> is specified.
4101 Specifically:
4102 <itemizedlist>
4103 <listitem><para>
4104 Each type in a default declaration must be an 
4105 instance of <literal>Num</literal> <emphasis>or</emphasis> of <literal>IsString</literal>.
4106 </para></listitem>
4107
4108 <listitem><para>
4109 The standard defaulting rule (<ulink url="http://haskell.org/onlinereport/decls.html#sect4.3.4">Haskell Report, Section 4.3.4</ulink>)
4110 is extended thus: defaulting applies when all the unresolved constraints involve standard classes
4111 <emphasis>or</emphasis> <literal>IsString</literal>; and at least one is a numeric class
4112 <emphasis>or</emphasis> <literal>IsString</literal>.
4113 </para></listitem>
4114 </itemizedlist>
4115 </para>
4116 <para>
4117 A small example:
4118 <programlisting>
4119 module Main where
4120
4121 import GHC.Exts( IsString(..) )
4122
4123 newtype MyString = MyString String deriving (Eq, Show)
4124 instance IsString MyString where
4125     fromString = MyString
4126
4127 greet :: MyString -> MyString
4128 greet "hello" = "world"
4129 greet other = other
4130
4131 main = do
4132     print $ greet "hello"
4133     print $ greet "fool"
4134 </programlisting>
4135 </para>
4136 <para>
4137 Note that deriving <literal>Eq</literal> is necessary for the pattern matching
4138 to work since it gets translated into an equality comparison.
4139 </para>
4140 </sect2>
4141
4142 <sect2 id="type-families">
4143 <title>Type families
4144 </title>
4145
4146 <para>
4147 GHC supports the definition of type families indexed by types.  They may be
4148 seen as an extension of Haskell 98's class-based overloading of values to
4149 types.  When type families are declared in classes, they are also known as
4150 associated types.
4151 </para>
4152 <para>
4153 There are two forms of type families: data families and type synonym families.
4154 Currently, only the former are fully implemented, while we are still working
4155 on the latter.  As a result, the specification of the language extension is
4156 also still to some degree in flux.  Hence, a more detailed description of
4157 the language extension and its use is currently available
4158 from <ulink url="http://haskell.org/haskellwiki/GHC/Indexed_types">the Haskell
4159 wiki page on type families</ulink>.  The material will be moved to this user's
4160 guide when it has stabilised.
4161 </para>
4162 <para>
4163 Type families are enabled by the flag <option>-ftype-families</option>.
4164 </para>
4165
4166
4167 </sect2>
4168
4169 </sect1>
4170 <!-- ==================== End of type system extensions =================  -->
4171   
4172 <!-- ====================== TEMPLATE HASKELL =======================  -->
4173
4174 <sect1 id="template-haskell">
4175 <title>Template Haskell</title>
4176
4177 <para>Template Haskell allows you to do compile-time meta-programming in
4178 Haskell.  
4179 The background to
4180 the main technical innovations is discussed in "<ulink
4181 url="http://research.microsoft.com/~simonpj/papers/meta-haskell">
4182 Template Meta-programming for Haskell</ulink>" (Proc Haskell Workshop 2002).
4183 </para>
4184 <para>
4185 There is a Wiki page about
4186 Template Haskell at <ulink url="http://haskell.org/haskellwiki/Template_Haskell">
4187 http://www.haskell.org/th/</ulink>, and that is the best place to look for
4188 further details.
4189 You may also 
4190 consult the <ulink
4191 url="http://www.haskell.org/ghc/docs/latest/html/libraries/index.html">online
4192 Haskell library reference material</ulink> 
4193 (search for the type ExpQ).
4194 [Temporary: many changes to the original design are described in 
4195       <ulink url="http://research.microsoft.com/~simonpj/tmp/notes2.ps">"http://research.microsoft.com/~simonpj/tmp/notes2.ps"</ulink>.
4196 Not all of these changes are in GHC 6.6.]
4197 </para>
4198
4199 <para> The first example from that paper is set out below as a worked example to help get you started. 
4200 </para>
4201
4202 <para>
4203 The documentation here describes the realisation in GHC.  (It's rather sketchy just now;
4204 Tim Sheard is going to expand it.)
4205 </para>
4206
4207     <sect2>
4208       <title>Syntax</title>
4209
4210       <para> Template Haskell has the following new syntactic
4211       constructions.  You need to use the flag
4212       <option>-fth</option><indexterm><primary><option>-fth</option></primary>
4213       </indexterm>to switch these syntactic extensions on
4214       (<option>-fth</option> is no longer implied by
4215       <option>-fglasgow-exts</option>).</para>
4216
4217         <itemizedlist>
4218               <listitem><para>
4219                   A splice is written <literal>$x</literal>, where <literal>x</literal> is an
4220                   identifier, or <literal>$(...)</literal>, where the "..." is an arbitrary expression.
4221                   There must be no space between the "$" and the identifier or parenthesis.  This use
4222                   of "$" overrides its meaning as an infix operator, just as "M.x" overrides the meaning
4223                   of "." as an infix operator.  If you want the infix operator, put spaces around it.
4224                   </para>
4225               <para> A splice can occur in place of 
4226                   <itemizedlist>
4227                     <listitem><para> an expression; the spliced expression must
4228                     have type <literal>Q Exp</literal></para></listitem>
4229                     <listitem><para> a list of top-level declarations; ; the spliced expression must have type <literal>Q [Dec]</literal></para></listitem>
4230                     <listitem><para> [Planned, but not implemented yet.] a
4231                     type; the spliced expression must have type <literal>Q Typ</literal>.</para></listitem>
4232                     </itemizedlist>
4233            (Note that the syntax for a declaration splice uses "<literal>$</literal>" not "<literal>splice</literal>" as in
4234         the paper. Also the type of the enclosed expression must be  <literal>Q [Dec]</literal>, not  <literal>[Q Dec]</literal>
4235         as in the paper.)
4236                 </para></listitem>
4237
4238
4239               <listitem><para>
4240                   A expression quotation is written in Oxford brackets, thus:
4241                   <itemizedlist>
4242                     <listitem><para> <literal>[| ... |]</literal>, where the "..." is an expression; 
4243                              the quotation has type <literal>Expr</literal>.</para></listitem>
4244                     <listitem><para> <literal>[d| ... |]</literal>, where the "..." is a list of top-level declarations;
4245                              the quotation has type <literal>Q [Dec]</literal>.</para></listitem>
4246                     <listitem><para>  [Planned, but not implemented yet.]  <literal>[t| ... |]</literal>, where the "..." is a type; 
4247                              the quotation has type <literal>Type</literal>.</para></listitem>
4248                   </itemizedlist></para></listitem>
4249
4250               <listitem><para>
4251                   Reification is written thus:
4252                   <itemizedlist>
4253                     <listitem><para> <literal>reifyDecl T</literal>, where <literal>T</literal> is a type constructor; this expression
4254                       has type <literal>Dec</literal>. </para></listitem>
4255                     <listitem><para> <literal>reifyDecl C</literal>, where <literal>C</literal> is a class; has type <literal>Dec</literal>.</para></listitem>
4256                     <listitem><para> <literal>reifyType f</literal>, where <literal>f</literal> is an identifier; has type <literal>Typ</literal>.</para></listitem>
4257                     <listitem><para> Still to come: fixities </para></listitem>
4258                     
4259                   </itemizedlist></para>
4260                 </listitem>
4261
4262                   
4263         </itemizedlist>
4264 </sect2>
4265
4266 <sect2>  <title> Using Template Haskell </title>
4267 <para>
4268 <itemizedlist>
4269     <listitem><para>
4270     The data types and monadic constructor functions for Template Haskell are in the library
4271     <literal>Language.Haskell.THSyntax</literal>.
4272     </para></listitem>
4273
4274     <listitem><para>
4275     You can only run a function at compile time if it is imported from another module.  That is,
4276             you can't define a function in a module, and call it from within a splice in the same module.
4277             (It would make sense to do so, but it's hard to implement.)
4278    </para></listitem>
4279
4280    <listitem><para>
4281    Furthermore, you can only run a function at compile time if it is imported
4282    from another module <emphasis>that is not part of a mutually-recursive group of modules
4283    that includes the module currently being compiled</emphasis>.  For example, when compiling module A,
4284    you can only run Template Haskell functions imported from B if B does not import A (directly or indirectly).
4285    The reason should be clear: to run B we must compile and run A, but we are currently type-checking A.
4286    </para></listitem>
4287
4288     <listitem><para>
4289             The flag <literal>-ddump-splices</literal> shows the expansion of all top-level splices as they happen.
4290    </para></listitem>
4291     <listitem><para>
4292             If you are building GHC from source, you need at least a stage-2 bootstrap compiler to
4293               run Template Haskell.  A stage-1 compiler will reject the TH constructs.  Reason: TH
4294               compiles and runs a program, and then looks at the result.  So it's important that
4295               the program it compiles produces results whose representations are identical to
4296               those of the compiler itself.
4297    </para></listitem>
4298 </itemizedlist>
4299 </para>
4300 <para> Template Haskell works in any mode (<literal>--make</literal>, <literal>--interactive</literal>,
4301         or file-at-a-time).  There used to be a restriction to the former two, but that restriction 
4302         has been lifted.
4303 </para>
4304 </sect2>
4305  
4306 <sect2>  <title> A Template Haskell Worked Example </title>
4307 <para>To help you get over the confidence barrier, try out this skeletal worked example.
4308   First cut and paste the two modules below into "Main.hs" and "Printf.hs":</para>
4309
4310 <programlisting>
4311
4312 {- Main.hs -}
4313 module Main where
4314
4315 -- Import our template "pr"
4316 import Printf ( pr )
4317
4318 -- The splice operator $ takes the Haskell source code
4319 -- generated at compile time by "pr" and splices it into
4320 -- the argument of "putStrLn".
4321 main = putStrLn ( $(pr "Hello") )
4322
4323
4324 {- Printf.hs -}
4325 module Printf where
4326
4327 -- Skeletal printf from the paper.
4328 -- It needs to be in a separate module to the one where
4329 -- you intend to use it.
4330
4331 -- Import some Template Haskell syntax
4332 import Language.Haskell.TH
4333
4334 -- Describe a format string
4335 data Format = D | S | L String
4336
4337 -- Parse a format string.  This is left largely to you
4338 -- as we are here interested in building our first ever
4339 -- Template Haskell program and not in building printf.
4340 parse :: String -> [Format]
4341 parse s   = [ L s ]
4342
4343 -- Generate Haskell source code from a parsed representation
4344 -- of the format string.  This code will be spliced into
4345 -- the module which calls "pr", at compile time.
4346 gen :: [Format] -> ExpQ
4347 gen [D]   = [| \n -> show n |]
4348 gen [S]   = [| \s -> s |]
4349 gen [L s] = stringE s
4350
4351 -- Here we generate the Haskell code for the splice
4352 -- from an input format string.
4353 pr :: String -> ExpQ
4354 pr s      = gen (parse s)
4355 </programlisting>
4356
4357 <para>Now run the compiler (here we are a Cygwin prompt on Windows):
4358 </para>
4359 <programlisting>
4360 $ ghc --make -fth main.hs -o main.exe
4361 </programlisting>
4362
4363 <para>Run "main.exe" and here is your output:</para>
4364
4365 <programlisting>
4366 $ ./main
4367 Hello
4368 </programlisting>
4369
4370 </sect2>
4371
4372 <sect2>
4373 <title>Using Template Haskell with Profiling</title>
4374 <indexterm><primary>profiling</primary><secondary>with Template Haskell</secondary></indexterm>
4375  
4376 <para>Template Haskell relies on GHC's built-in bytecode compiler and
4377 interpreter to run the splice expressions.  The bytecode interpreter
4378 runs the compiled expression on top of the same runtime on which GHC
4379 itself is running; this means that the compiled code referred to by
4380 the interpreted expression must be compatible with this runtime, and
4381 in particular this means that object code that is compiled for
4382 profiling <emphasis>cannot</emphasis> be loaded and used by a splice
4383 expression, because profiled object code is only compatible with the
4384 profiling version of the runtime.</para>
4385
4386 <para>This causes difficulties if you have a multi-module program
4387 containing Template Haskell code and you need to compile it for
4388 profiling, because GHC cannot load the profiled object code and use it
4389 when executing the splices.  Fortunately GHC provides a workaround.
4390 The basic idea is to compile the program twice:</para>
4391
4392 <orderedlist>
4393 <listitem>
4394   <para>Compile the program or library first the normal way, without
4395   <option>-prof</option><indexterm><primary><option>-prof</option></primary></indexterm>.</para>
4396 </listitem>
4397 <listitem>
4398   <para>Then compile it again with <option>-prof</option>, and
4399   additionally use <option>-osuf
4400   p_o</option><indexterm><primary><option>-osuf</option></primary></indexterm>
4401   to name the object files differentliy (you can choose any suffix
4402   that isn't the normal object suffix here).  GHC will automatically
4403   load the object files built in the first step when executing splice
4404   expressions.  If you omit the <option>-osuf</option> flag when
4405   building with <option>-prof</option> and Template Haskell is used,
4406   GHC will emit an error message. </para>
4407 </listitem>
4408 </orderedlist>
4409 </sect2>
4410
4411 </sect1>
4412
4413 <!-- ===================== Arrow notation ===================  -->
4414
4415 <sect1 id="arrow-notation">
4416 <title>Arrow notation
4417 </title>
4418
4419 <para>Arrows are a generalization of monads introduced by John Hughes.
4420 For more details, see
4421 <itemizedlist>
4422
4423 <listitem>
4424 <para>
4425 &ldquo;Generalising Monads to Arrows&rdquo;,
4426 John Hughes, in <citetitle>Science of Computer Programming</citetitle> 37,
4427 pp67&ndash;111, May 2000.
4428 </para>
4429 </listitem>
4430
4431 <listitem>
4432 <para>
4433 &ldquo;<ulink url="http://www.soi.city.ac.uk/~ross/papers/notation.html">A New Notation for Arrows</ulink>&rdquo;,
4434 Ross Paterson, in <citetitle>ICFP</citetitle>, Sep 2001.
4435 </para>
4436 </listitem>
4437
4438 <listitem>
4439 <para>
4440 &ldquo;<ulink url="http://www.soi.city.ac.uk/~ross/papers/fop.html">Arrows and Computation</ulink>&rdquo;,
4441 Ross Paterson, in <citetitle>The Fun of Programming</citetitle>,
4442 Palgrave, 2003.
4443 </para>
4444 </listitem>
4445
4446 </itemizedlist>
4447 and the arrows web page at
4448 <ulink url="http://www.haskell.org/arrows/"><literal>http://www.haskell.org/arrows/</literal></ulink>.
4449 With the <option>-farrows</option> flag, GHC supports the arrow
4450 notation described in the second of these papers.
4451 What follows is a brief introduction to the notation;
4452 it won't make much sense unless you've read Hughes's paper.
4453 This notation is translated to ordinary Haskell,
4454 using combinators from the
4455 <ulink url="../libraries/base/Control-Arrow.html"><literal>Control.Arrow</literal></ulink>
4456 module.
4457 </para>
4458
4459 <para>The extension adds a new kind of expression for defining arrows:
4460 <screen>
4461 <replaceable>exp</replaceable><superscript>10</superscript> ::= ...
4462        |  proc <replaceable>apat</replaceable> -> <replaceable>cmd</replaceable>
4463 </screen>
4464 where <literal>proc</literal> is a new keyword.
4465 The variables of the pattern are bound in the body of the 
4466 <literal>proc</literal>-expression,
4467 which is a new sort of thing called a <firstterm>command</firstterm>.
4468 The syntax of commands is as follows:
4469 <screen>
4470 <replaceable>cmd</replaceable>   ::= <replaceable>exp</replaceable><superscript>10</superscript> -&lt;  <replaceable>exp</replaceable>
4471        |  <replaceable>exp</replaceable><superscript>10</superscript> -&lt;&lt; <replaceable>exp</replaceable>
4472        |  <replaceable>cmd</replaceable><superscript>0</superscript>
4473 </screen>
4474 with <replaceable>cmd</replaceable><superscript>0</superscript> up to
4475 <replaceable>cmd</replaceable><superscript>9</superscript> defined using
4476 infix operators as for expressions, and
4477 <screen>
4478 <replaceable>cmd</replaceable><superscript>10</superscript> ::= \ <replaceable>apat</replaceable> ... <replaceable>apat</replaceable> -> <replaceable>cmd</replaceable>
4479        |  let <replaceable>decls</replaceable> in <replaceable>cmd</replaceable>
4480        |  if <replaceable>exp</replaceable> then <replaceable>cmd</replaceable> else <replaceable>cmd</replaceable>
4481        |  case <replaceable>exp</replaceable> of { <replaceable>calts</replaceable> }
4482        |  do { <replaceable>cstmt</replaceable> ; ... <replaceable>cstmt</replaceable> ; <replaceable>cmd</replaceable> }
4483        |  <replaceable>fcmd</replaceable>
4484
4485 <replaceable>fcmd</replaceable>  ::= <replaceable>fcmd</replaceable> <replaceable>aexp</replaceable>
4486        |  ( <replaceable>cmd</replaceable> )
4487        |  (| <replaceable>aexp</replaceable> <replaceable>cmd</replaceable> ... <replaceable>cmd</replaceable> |)
4488
4489 <replaceable>cstmt</replaceable> ::= let <replaceable>decls</replaceable>
4490        |  <replaceable>pat</replaceable> &lt;- <replaceable>cmd</replaceable>
4491        |  rec { <replaceable>cstmt</replaceable> ; ... <replaceable>cstmt</replaceable> [;] }
4492        |  <replaceable>cmd</replaceable>
4493 </screen>
4494 where <replaceable>calts</replaceable> are like <replaceable>alts</replaceable>
4495 except that the bodies are commands instead of expressions.
4496 </para>
4497
4498 <para>
4499 Commands produce values, but (like monadic computations)
4500 may yield more than one value,
4501 or none, and may do other things as well.
4502 For the most part, familiarity with monadic notation is a good guide to
4503 using commands.
4504 However the values of expressions, even monadic ones,
4505 are determined by the values of the variables they contain;
4506 this is not necessarily the case for commands.
4507 </para>
4508
4509 <para>
4510 A simple example of the new notation is the expression
4511 <screen>
4512 proc x -> f -&lt; x+1
4513 </screen>
4514 We call this a <firstterm>procedure</firstterm> or
4515 <firstterm>arrow abstraction</firstterm>.
4516 As with a lambda expression, the variable <literal>x</literal>
4517 is a new variable bound within the <literal>proc</literal>-expression.
4518 It refers to the input to the arrow.
4519 In the above example, <literal>-&lt;</literal> is not an identifier but an
4520 new reserved symbol used for building commands from an expression of arrow
4521 type and an expression to be fed as input to that arrow.
4522 (The weird look will make more sense later.)
4523 It may be read as analogue of application for arrows.
4524 The above example is equivalent to the Haskell expression
4525 <screen>
4526 arr (\ x -> x+1) >>> f
4527 </screen>
4528 That would make no sense if the expression to the left of
4529 <literal>-&lt;</literal> involves the bound variable <literal>x</literal>.
4530 More generally, the expression to the left of <literal>-&lt;</literal>
4531 may not involve any <firstterm>local variable</firstterm>,
4532 i.e. a variable bound in the current arrow abstraction.
4533 For such a situation there is a variant <literal>-&lt;&lt;</literal>, as in
4534 <screen>
4535 proc x -> f x -&lt;&lt; x+1
4536 </screen>
4537 which is equivalent to
4538 <screen>
4539 arr (\ x -> (f x, x+1)) >>> app
4540 </screen>
4541 so in this case the arrow must belong to the <literal>ArrowApply</literal>
4542 class.
4543 Such an arrow is equivalent to a monad, so if you're using this form
4544 you may find a monadic formulation more convenient.
4545 </para>
4546
4547 <sect2>
4548 <title>do-notation for commands</title>
4549
4550 <para>
4551 Another form of command is a form of <literal>do</literal>-notation.
4552 For example, you can write
4553 <screen>
4554 proc x -> do
4555         y &lt;- f -&lt; x+1
4556         g -&lt; 2*y
4557         let z = x+y
4558         t &lt;- h -&lt; x*z
4559         returnA -&lt; t+z
4560 </screen>
4561 You can read this much like ordinary <literal>do</literal>-notation,
4562 but with commands in place of monadic expressions.
4563 The first line sends the value of <literal>x+1</literal> as an input to
4564 the arrow <literal>f</literal>, and matches its output against
4565 <literal>y</literal>.
4566 In the next line, the output is discarded.
4567 The arrow <function>returnA</function> is defined in the
4568 <ulink url="../libraries/base/Control-Arrow.html"><literal>Control.Arrow</literal></ulink>
4569 module as <literal>arr id</literal>.
4570 The above example is treated as an abbreviation for
4571 <screen>
4572 arr (\ x -> (x, x)) >>>
4573         first (arr (\ x -> x+1) >>> f) >>>
4574         arr (\ (y, x) -> (y, (x, y))) >>>
4575         first (arr (\ y -> 2*y) >>> g) >>>
4576         arr snd >>>
4577         arr (\ (x, y) -> let z = x+y in ((x, z), z)) >>>
4578         first (arr (\ (x, z) -> x*z) >>> h) >>>
4579         arr (\ (t, z) -> t+z) >>>
4580         returnA
4581 </screen>
4582 Note that variables not used later in the composition are projected out.
4583 After simplification using rewrite rules (see <xref linkend="rewrite-rules"/>)
4584 defined in the
4585 <ulink url="../libraries/base/Control-Arrow.html"><literal>Control.Arrow</literal></ulink>
4586 module, this reduces to
4587 <screen>
4588 arr (\ x -> (x+1, x)) >>>
4589         first f >>>
4590         arr (\ (y, x) -> (2*y, (x, y))) >>>
4591         first g >>>
4592         arr (\ (_, (x, y)) -> let z = x+y in (x*z, z)) >>>
4593         first h >>>
4594         arr (\ (t, z) -> t+z)
4595 </screen>
4596 which is what you might have written by hand.
4597 With arrow notation, GHC keeps track of all those tuples of variables for you.
4598 </para>
4599
4600 <para>
4601 Note that although the above translation suggests that
4602 <literal>let</literal>-bound variables like <literal>z</literal> must be
4603 monomorphic, the actual translation produces Core,
4604 so polymorphic variables are allowed.
4605 </para>
4606
4607 <para>
4608 It's also possible to have mutually recursive bindings,
4609 using the new <literal>rec</literal> keyword, as in the following example:
4610 <programlisting>
4611 counter :: ArrowCircuit a => a Bool Int
4612 counter = proc reset -> do
4613         rec     output &lt;- returnA -&lt; if reset then 0 else next
4614                 next &lt;- delay 0 -&lt; output+1
4615         returnA -&lt; output
4616 </programlisting>
4617 The translation of such forms uses the <function>loop</function> combinator,
4618 so the arrow concerned must belong to the <literal>ArrowLoop</literal> class.
4619 </para>
4620
4621 </sect2>
4622
4623 <sect2>
4624 <title>Conditional commands</title>
4625
4626 <para>
4627 In the previous example, we used a conditional expression to construct the
4628 input for an arrow.
4629 Sometimes we want to conditionally execute different commands, as in
4630 <screen>
4631 proc (x,y) ->
4632         if f x y
4633         then g -&lt; x+1
4634         else h -&lt; y+2
4635 </screen>
4636 which is translated to
4637 <screen>
4638 arr (\ (x,y) -> if f x y then Left x else Right y) >>>
4639         (arr (\x -> x+1) >>> f) ||| (arr (\y -> y+2) >>> g)
4640 </screen>
4641 Since the translation uses <function>|||</function>,
4642 the arrow concerned must belong to the <literal>ArrowChoice</literal> class.
4643 </para>
4644
4645 <para>
4646 There are also <literal>case</literal> commands, like
4647 <screen>
4648 case input of
4649     [] -> f -&lt; ()
4650     [x] -> g -&lt; x+1
4651     x1:x2:xs -> do
4652         y &lt;- h -&lt; (x1, x2)
4653         ys &lt;- k -&lt; xs
4654         returnA -&lt; y:ys
4655 </screen>
4656 The syntax is the same as for <literal>case</literal> expressions,
4657 except that the bodies of the alternatives are commands rather than expressions.
4658 The translation is similar to that of <literal>if</literal> commands.
4659 </para>
4660
4661 </sect2>
4662
4663 <sect2>
4664 <title>Defining your own control structures</title>
4665
4666 <para>
4667 As we're seen, arrow notation provides constructs,
4668 modelled on those for expressions,
4669 for sequencing, value recursion and conditionals.
4670 But suitable combinators,
4671 which you can define in ordinary Haskell,
4672 may also be used to build new commands out of existing ones.
4673 The basic idea is that a command defines an arrow from environments to values.
4674 These environments assign values to the free local variables of the command.
4675 Thus combinators that produce arrows from arrows
4676 may also be used to build commands from commands.
4677 For example, the <literal>ArrowChoice</literal> class includes a combinator
4678 <programlisting>
4679 ArrowChoice a => (&lt;+>) :: a e c -> a e c -> a e c
4680 </programlisting>
4681 so we can use it to build commands:
4682 <programlisting>
4683 expr' = proc x -> do
4684                 returnA -&lt; x
4685         &lt;+> do
4686                 symbol Plus -&lt; ()
4687                 y &lt;- term -&lt; ()
4688                 expr' -&lt; x + y
4689         &lt;+> do
4690                 symbol Minus -&lt; ()
4691                 y &lt;- term -&lt; ()
4692                 expr' -&lt; x - y
4693 </programlisting>
4694 (The <literal>do</literal> on the first line is needed to prevent the first
4695 <literal>&lt;+> ...</literal> from being interpreted as part of the
4696 expression on the previous line.)
4697 This is equivalent to
4698 <programlisting>
4699 expr' = (proc x -> returnA -&lt; x)
4700         &lt;+> (proc x -> do
4701                 symbol Plus -&lt; ()
4702                 y &lt;- term -&lt; ()
4703                 expr' -&lt; x + y)
4704         &lt;+> (proc x -> do
4705                 symbol Minus -&lt; ()
4706                 y &lt;- term -&lt; ()
4707                 expr' -&lt; x - y)
4708 </programlisting>
4709 It is essential that this operator be polymorphic in <literal>e</literal>
4710 (representing the environment input to the command
4711 and thence to its subcommands)
4712 and satisfy the corresponding naturality property
4713 <screen>
4714 arr k >>> (f &lt;+> g) = (arr k >>> f) &lt;+> (arr k >>> g)
4715 </screen>
4716 at least for strict <literal>k</literal>.
4717 (This should be automatic if you're not using <function>seq</function>.)
4718 This ensures that environments seen by the subcommands are environments
4719 of the whole command,
4720 and also allows the translation to safely trim these environments.
4721 The operator must also not use any variable defined within the current
4722 arrow abstraction.
4723 </para>
4724
4725 <para>
4726 We could define our own operator
4727 <programlisting>
4728 untilA :: ArrowChoice a => a e () -> a e Bool -> a e ()
4729 untilA body cond = proc x ->
4730         if cond x then returnA -&lt; ()
4731         else do
4732                 body -&lt; x
4733                 untilA body cond -&lt; x
4734 </programlisting>
4735 and use it in the same way.
4736 Of course this infix syntax only makes sense for binary operators;
4737 there is also a more general syntax involving special brackets:
4738 <screen>
4739 proc x -> do
4740         y &lt;- f -&lt; x+1
4741         (|untilA (increment -&lt; x+y) (within 0.5 -&lt; x)|)
4742 </screen>
4743 </para>
4744
4745 </sect2>
4746
4747 <sect2>
4748 <title>Primitive constructs</title>
4749
4750 <para>
4751 Some operators will need to pass additional inputs to their subcommands.
4752 For example, in an arrow type supporting exceptions,
4753 the operator that attaches an exception handler will wish to pass the
4754 exception that occurred to the handler.
4755 Such an operator might have a type
4756 <screen>
4757 handleA :: ... => a e c -> a (e,Ex) c -> a e c
4758 </screen>
4759 where <literal>Ex</literal> is the type of exceptions handled.
4760 You could then use this with arrow notation by writing a command
4761 <screen>
4762 body `handleA` \ ex -> handler
4763 </screen>
4764 so that if an exception is raised in the command <literal>body</literal>,
4765 the variable <literal>ex</literal> is bound to the value of the exception
4766 and the command <literal>handler</literal>,
4767 which typically refers to <literal>ex</literal>, is entered.
4768 Though the syntax here looks like a functional lambda,
4769 we are talking about commands, and something different is going on.
4770 The input to the arrow represented by a command consists of values for
4771 the free local variables in the command, plus a stack of anonymous values.
4772 In all the prior examples, this stack was empty.
4773 In the second argument to <function>handleA</function>,
4774 this stack consists of one value, the value of the exception.
4775 The command form of lambda merely gives this value a name.
4776 </para>
4777
4778 <para>
4779 More concretely,
4780 the values on the stack are paired to the right of the environment.
4781 So operators like <function>handleA</function> that pass
4782 extra inputs to their subcommands can be designed for use with the notation
4783 by pairing the values with the environment in this way.
4784 More precisely, the type of each argument of the operator (and its result)
4785 should have the form
4786 <screen>
4787 a (...(e,t1), ... tn) t
4788 </screen>
4789 where <replaceable>e</replaceable> is a polymorphic variable
4790 (representing the environment)
4791 and <replaceable>ti</replaceable> are the types of the values on the stack,
4792 with <replaceable>t1</replaceable> being the <quote>top</quote>.
4793 The polymorphic variable <replaceable>e</replaceable> must not occur in
4794 <replaceable>a</replaceable>, <replaceable>ti</replaceable> or
4795 <replaceable>t</replaceable>.
4796 However the arrows involved need not be the same.
4797 Here are some more examples of suitable operators:
4798 <screen>
4799 bracketA :: ... => a e b -> a (e,b) c -> a (e,c) d -> a e d
4800 runReader :: ... => a e c -> a' (e,State) c
4801 runState :: ... => a e c -> a' (e,State) (c,State)
4802 </screen>
4803 We can supply the extra input required by commands built with the last two
4804 by applying them to ordinary expressions, as in
4805 <screen>
4806 proc x -> do
4807         s &lt;- ...
4808         (|runReader (do { ... })|) s
4809 </screen>
4810 which adds <literal>s</literal> to the stack of inputs to the command
4811 built using <function>runReader</function>.
4812 </para>
4813
4814 <para>
4815 The command versions of lambda abstraction and application are analogous to
4816 the expression versions.
4817 In particular, the beta and eta rules describe equivalences of commands.
4818 These three features (operators, lambda abstraction and application)
4819 are the core of the notation; everything else can be built using them,
4820 though the results would be somewhat clumsy.
4821 For example, we could simulate <literal>do</literal>-notation by defining
4822 <programlisting>
4823 bind :: Arrow a => a e b -> a (e,b) c -> a e c
4824 u `bind` f = returnA &amp;&amp;&amp; u >>> f
4825
4826 bind_ :: Arrow a => a e b -> a e c -> a e c
4827 u `bind_` f = u `bind` (arr fst >>> f)
4828 </programlisting>
4829 We could simulate <literal>if</literal> by defining
4830 <programlisting>
4831 cond :: ArrowChoice a => a e b -> a e b -> a (e,Bool) b
4832 cond f g = arr (\ (e,b) -> if b then Left e else Right e) >>> f ||| g
4833 </programlisting>
4834 </para>
4835
4836 </sect2>
4837
4838 <sect2>
4839 <title>Differences with the paper</title>
4840
4841 <itemizedlist>
4842
4843 <listitem>
4844 <para>Instead of a single form of arrow application (arrow tail) with two
4845 translations, the implementation provides two forms
4846 <quote><literal>-&lt;</literal></quote> (first-order)
4847 and <quote><literal>-&lt;&lt;</literal></quote> (higher-order).
4848 </para>
4849 </listitem>
4850
4851 <listitem>
4852 <para>User-defined operators are flagged with banana brackets instead of
4853 a new <literal>form</literal> keyword.
4854 </para>
4855 </listitem>
4856
4857 </itemizedlist>
4858
4859 </sect2>
4860
4861 <sect2>
4862 <title>Portability</title>
4863
4864 <para>
4865 Although only GHC implements arrow notation directly,
4866 there is also a preprocessor
4867 (available from the 
4868 <ulink url="http://www.haskell.org/arrows/">arrows web page</ulink>)
4869 that translates arrow notation into Haskell 98
4870 for use with other Haskell systems.
4871 You would still want to check arrow programs with GHC;
4872 tracing type errors in the preprocessor output is not easy.
4873 Modules intended for both GHC and the preprocessor must observe some
4874 additional restrictions:
4875 <itemizedlist>
4876
4877 <listitem>
4878 <para>
4879 The module must import
4880 <ulink url="../libraries/base/Control-Arrow.html"><literal>Control.Arrow</literal></ulink>.
4881 </para>
4882 </listitem>
4883
4884 <listitem>
4885 <para>
4886 The preprocessor cannot cope with other Haskell extensions.
4887 These would have to go in separate modules.
4888 </para>
4889 </listitem>
4890
4891 <listitem>
4892 <para>
4893 Because the preprocessor targets Haskell (rather than Core),
4894 <literal>let</literal>-bound variables are monomorphic.
4895 </para>
4896 </listitem>
4897
4898 </itemizedlist>
4899 </para>
4900
4901 </sect2>
4902
4903 </sect1>
4904
4905 <!-- ==================== BANG PATTERNS =================  -->
4906
4907 <sect1 id="bang-patterns">
4908 <title>Bang patterns
4909 <indexterm><primary>Bang patterns</primary></indexterm>
4910 </title>
4911 <para>GHC supports an extension of pattern matching called <emphasis>bang
4912 patterns</emphasis>.   Bang patterns are under consideration for Haskell Prime.
4913 The <ulink
4914 url="http://hackage.haskell.org/trac/haskell-prime/wiki/BangPatterns">Haskell
4915 prime feature description</ulink> contains more discussion and examples
4916 than the material below.
4917 </para>
4918 <para>
4919 Bang patterns are enabled by the flag <option>-fbang-patterns</option>.
4920 </para>
4921
4922 <sect2 id="bang-patterns-informal">
4923 <title>Informal description of bang patterns
4924 </title>
4925 <para>
4926 The main idea is to add a single new production to the syntax of patterns:
4927 <programlisting>
4928   pat ::= !pat
4929 </programlisting>
4930 Matching an expression <literal>e</literal> against a pattern <literal>!p</literal> is done by first
4931 evaluating <literal>e</literal> (to WHNF) and then matching the result against <literal>p</literal>.
4932 Example:
4933 <programlisting>
4934 f1 !x = True
4935 </programlisting>
4936 This definition makes <literal>f1</literal> is strict in <literal>x</literal>,
4937 whereas without the bang it would be lazy.
4938 Bang patterns can be nested of course:
4939 <programlisting>
4940 f2 (!x, y) = [x,y]
4941 </programlisting>
4942 Here, <literal>f2</literal> is strict in <literal>x</literal> but not in
4943 <literal>y</literal>.  
4944 A bang only really has an effect if it precedes a variable or wild-card pattern:
4945 <programlisting>
4946 f3 !(x,y) = [x,y]
4947 f4 (x,y)  = [x,y]
4948 </programlisting>
4949 Here, <literal>f3</literal> and <literal>f4</literal> are identical; putting a bang before a pattern that
4950 forces evaluation anyway does nothing.
4951 </para><para>
4952 Bang patterns work in <literal>case</literal> expressions too, of course:
4953 <programlisting>
4954 g5 x = let y = f x in body
4955 g6 x = case f x of { y -&gt; body }
4956 g7 x = case f x of { !y -&gt; body }
4957 </programlisting>
4958 The functions <literal>g5</literal> and <literal>g6</literal> mean exactly the same thing.  
4959 But <literal>g7</literal> evalutes <literal>(f x)</literal>, binds <literal>y</literal> to the
4960 result, and then evaluates <literal>body</literal>.
4961 </para><para>
4962 Bang patterns work in <literal>let</literal> and <literal>where</literal>
4963 definitions too. For example:
4964 <programlisting>
4965 let ![x,y] = e in b
4966 </programlisting>
4967 is a strict pattern: operationally, it evaluates <literal>e</literal>, matches
4968 it against the pattern <literal>[x,y]</literal>, and then evaluates <literal>b</literal>
4969 The "<literal>!</literal>" should not be regarded as part of the pattern; after all,
4970 in a function argument <literal>![x,y]</literal> means the 
4971 same as <literal>[x,y]</literal>.  Rather, the "<literal>!</literal>" 
4972 is part of the syntax of <literal>let</literal> bindings.
4973 </para>
4974 </sect2>
4975
4976
4977 <sect2 id="bang-patterns-sem">
4978 <title>Syntax and semantics
4979 </title>
4980 <para>
4981
4982 We add a single new production to the syntax of patterns:
4983 <programlisting>
4984   pat ::= !pat
4985 </programlisting>
4986 There is one problem with syntactic ambiguity.  Consider:
4987 <programlisting>
4988 f !x = 3
4989 </programlisting>
4990 Is this a definition of the infix function "<literal>(!)</literal>",
4991 or of the "<literal>f</literal>" with a bang pattern? GHC resolves this
4992 ambiguity in favour of the latter.  If you want to define
4993 <literal>(!)</literal> with bang-patterns enabled, you have to do so using
4994 prefix notation:
4995 <programlisting>
4996 (!) f x = 3
4997 </programlisting>
4998 The semantics of Haskell pattern matching is described in <ulink
4999 url="http://haskell.org/onlinereport/exps.html#sect3.17.2">
5000 Section 3.17.2</ulink> of the Haskell Report.  To this description add 
5001 one extra item 10, saying:
5002 <itemizedlist><listitem><para>Matching
5003 the pattern <literal>!pat</literal> against a value <literal>v</literal> behaves as follows:
5004 <itemizedlist><listitem><para>if <literal>v</literal> is bottom, the match diverges</para></listitem>
5005                 <listitem><para>otherwise, <literal>pat</literal> is matched against
5006                 <literal>v</literal></para></listitem>
5007 </itemizedlist>
5008 </para></listitem></itemizedlist>
5009 Similarly, in Figure 4 of  <ulink url="http://haskell.org/onlinereport/exps.html#sect3.17.3">
5010 Section 3.17.3</ulink>, add a new case (t):
5011 <programlisting>
5012 case v of { !pat -> e; _ -> e' }
5013    = v `seq` case v of { pat -> e; _ -> e' }
5014 </programlisting>
5015 </para><para>
5016 That leaves let expressions, whose translation is given in 
5017 <ulink url="http://haskell.org/onlinereport/exps.html#sect3.12">Section
5018 3.12</ulink>
5019 of the Haskell Report.
5020 In the translation box, first apply 
5021 the following transformation:  for each pattern <literal>pi</literal> that is of 
5022 form <literal>!qi = ei</literal>, transform it to <literal>(xi,!qi) = ((),ei)</literal>, and and replace <literal>e0</literal> 
5023 by <literal>(xi `seq` e0)</literal>.  Then, when none of the left-hand-side patterns
5024 have a bang at the top, apply the rules in the existing box.
5025 </para>
5026 <para>The effect of the let rule is to force complete matching of the pattern
5027 <literal>qi</literal> before evaluation of the body is begun.  The bang is
5028 retained in the translated form in case <literal>qi</literal> is a variable,
5029 thus:
5030 <programlisting>
5031   let !y = f x in b
5032 </programlisting>
5033
5034 </para>
5035 <para>
5036 The let-binding can be recursive.  However, it is much more common for
5037 the let-binding to be non-recursive, in which case the following law holds:
5038 <literal>(let !p = rhs in body)</literal>
5039      is equivalent to
5040 <literal>(case rhs of !p -> body)</literal>
5041 </para>
5042 <para>
5043 A pattern with a bang at the outermost level is not allowed at the top level of
5044 a module.
5045 </para>
5046 </sect2>
5047 </sect1>
5048
5049 <!-- ==================== ASSERTIONS =================  -->
5050
5051 <sect1 id="assertions">
5052 <title>Assertions
5053 <indexterm><primary>Assertions</primary></indexterm>
5054 </title>
5055
5056 <para>
5057 If you want to make use of assertions in your standard Haskell code, you
5058 could define a function like the following:
5059 </para>
5060
5061 <para>
5062
5063 <programlisting>
5064 assert :: Bool -> a -> a
5065 assert False x = error "assertion failed!"
5066 assert _     x = x
5067 </programlisting>
5068
5069 </para>
5070
5071 <para>
5072 which works, but gives you back a less than useful error message --
5073 an assertion failed, but which and where?
5074 </para>
5075
5076 <para>
5077 One way out is to define an extended <function>assert</function> function which also
5078 takes a descriptive string to include in the error message and
5079 perhaps combine this with the use of a pre-processor which inserts
5080 the source location where <function>assert</function> was used.
5081 </para>
5082
5083 <para>
5084 Ghc offers a helping hand here, doing all of this for you. For every
5085 use of <function>assert</function> in the user's source:
5086 </para>
5087
5088 <para>
5089
5090 <programlisting>
5091 kelvinToC :: Double -> Double
5092 kelvinToC k = assert (k &gt;= 0.0) (k+273.15)
5093 </programlisting>
5094
5095 </para>
5096
5097 <para>
5098 Ghc will rewrite this to also include the source location where the
5099 assertion was made,
5100 </para>
5101
5102 <para>
5103
5104 <programlisting>
5105 assert pred val ==> assertError "Main.hs|15" pred val
5106 </programlisting>
5107
5108 </para>
5109
5110 <para>
5111 The rewrite is only performed by the compiler when it spots
5112 applications of <function>Control.Exception.assert</function>, so you
5113 can still define and use your own versions of
5114 <function>assert</function>, should you so wish. If not, import
5115 <literal>Control.Exception</literal> to make use
5116 <function>assert</function> in your code.
5117 </para>
5118
5119 <para>
5120 GHC ignores assertions when optimisation is turned on with the
5121       <option>-O</option><indexterm><primary><option>-O</option></primary></indexterm> flag.  That is, expressions of the form
5122 <literal>assert pred e</literal> will be rewritten to
5123 <literal>e</literal>.  You can also disable assertions using the
5124       <option>-fignore-asserts</option>
5125       option<indexterm><primary><option>-fignore-asserts</option></primary>
5126       </indexterm>.</para>
5127
5128 <para>
5129 Assertion failures can be caught, see the documentation for the
5130 <literal>Control.Exception</literal> library for the details.
5131 </para>
5132
5133 </sect1>
5134
5135
5136 <!-- =============================== PRAGMAS ===========================  -->
5137
5138   <sect1 id="pragmas">
5139     <title>Pragmas</title>
5140
5141     <indexterm><primary>pragma</primary></indexterm>
5142
5143     <para>GHC supports several pragmas, or instructions to the
5144     compiler placed in the source code.  Pragmas don't normally affect
5145     the meaning of the program, but they might affect the efficiency
5146     of the generated code.</para>
5147
5148     <para>Pragmas all take the form
5149
5150 <literal>{-# <replaceable>word</replaceable> ... #-}</literal>  
5151
5152     where <replaceable>word</replaceable> indicates the type of
5153     pragma, and is followed optionally by information specific to that
5154     type of pragma.  Case is ignored in
5155     <replaceable>word</replaceable>.  The various values for
5156     <replaceable>word</replaceable> that GHC understands are described
5157     in the following sections; any pragma encountered with an
5158     unrecognised <replaceable>word</replaceable> is (silently)
5159     ignored.</para>
5160
5161     <sect2 id="deprecated-pragma">
5162       <title>DEPRECATED pragma</title>
5163       <indexterm><primary>DEPRECATED</primary>
5164       </indexterm>
5165
5166       <para>The DEPRECATED pragma lets you specify that a particular
5167       function, class, or type, is deprecated.  There are two
5168       forms.
5169
5170       <itemizedlist>
5171         <listitem>
5172           <para>You can deprecate an entire module thus:</para>
5173 <programlisting>
5174    module Wibble {-# DEPRECATED "Use Wobble instead" #-} where
5175      ...
5176 </programlisting>
5177           <para>When you compile any module that import
5178           <literal>Wibble</literal>, GHC will print the specified
5179           message.</para>
5180         </listitem>
5181
5182         <listitem>
5183           <para>You can deprecate a function, class, type, or data constructor, with the
5184           following top-level declaration:</para>
5185 <programlisting>
5186    {-# DEPRECATED f, C, T "Don't use these" #-}
5187 </programlisting>
5188           <para>When you compile any module that imports and uses any
5189           of the specified entities, GHC will print the specified
5190           message.</para>
5191           <para> You can only depecate entities declared at top level in the module
5192           being compiled, and you can only use unqualified names in the list of
5193           entities being deprecated.  A capitalised name, such as <literal>T</literal>
5194           refers to <emphasis>either</emphasis> the type constructor <literal>T</literal>
5195           <emphasis>or</emphasis> the data constructor <literal>T</literal>, or both if
5196           both are in scope.  If both are in scope, there is currently no way to deprecate 
5197           one without the other (c.f. fixities <xref linkend="infix-tycons"/>).</para>
5198         </listitem>
5199       </itemizedlist>
5200       Any use of the deprecated item, or of anything from a deprecated
5201       module, will be flagged with an appropriate message.  However,
5202       deprecations are not reported for
5203       (a) uses of a deprecated function within its defining module, and
5204       (b) uses of a deprecated function in an export list.
5205       The latter reduces spurious complaints within a library
5206       in which one module gathers together and re-exports 
5207       the exports of several others.
5208       </para>
5209       <para>You can suppress the warnings with the flag
5210       <option>-fno-warn-deprecations</option>.</para>
5211     </sect2>
5212
5213     <sect2 id="include-pragma">
5214       <title>INCLUDE pragma</title>
5215
5216       <para>The <literal>INCLUDE</literal> pragma is for specifying the names
5217         of C header files that should be <literal>#include</literal>'d into
5218         the C source code generated by the compiler for the current module (if
5219         compiling via C).  For example:</para>
5220
5221 <programlisting>
5222 {-# INCLUDE "foo.h" #-}
5223 {-# INCLUDE &lt;stdio.h&gt; #-}</programlisting>
5224
5225       <para>The <literal>INCLUDE</literal> pragma(s) must appear at the top of
5226         your source file with any <literal>OPTIONS_GHC</literal>
5227         pragma(s).</para>
5228
5229       <para>An <literal>INCLUDE</literal> pragma is  the preferred alternative
5230         to the <option>-#include</option> option (<xref
5231           linkend="options-C-compiler" />), because the
5232         <literal>INCLUDE</literal> pragma is understood by other
5233         compilers.  Yet another alternative is to add the include file to each
5234         <literal>foreign import</literal> declaration in your code, but we
5235         don't recommend using this approach with GHC.</para>
5236     </sect2>
5237
5238     <sect2 id="inline-noinline-pragma">
5239       <title>INLINE and NOINLINE pragmas</title>
5240
5241       <para>These pragmas control the inlining of function
5242       definitions.</para>
5243
5244       <sect3 id="inline-pragma">
5245         <title>INLINE pragma</title>
5246         <indexterm><primary>INLINE</primary></indexterm>
5247
5248         <para>GHC (with <option>-O</option>, as always) tries to
5249         inline (or &ldquo;unfold&rdquo;) functions/values that are
5250         &ldquo;small enough,&rdquo; thus avoiding the call overhead
5251         and possibly exposing other more-wonderful optimisations.
5252         Normally, if GHC decides a function is &ldquo;too
5253         expensive&rdquo; to inline, it will not do so, nor will it
5254         export that unfolding for other modules to use.</para>
5255
5256         <para>The sledgehammer you can bring to bear is the
5257         <literal>INLINE</literal><indexterm><primary>INLINE
5258         pragma</primary></indexterm> pragma, used thusly:</para>
5259
5260 <programlisting>
5261 key_function :: Int -> String -> (Bool, Double)
5262
5263 #ifdef __GLASGOW_HASKELL__
5264 {-# INLINE key_function #-}
5265 #endif
5266 </programlisting>
5267
5268         <para>(You don't need to do the C pre-processor carry-on
5269         unless you're going to stick the code through HBC&mdash;it
5270         doesn't like <literal>INLINE</literal> pragmas.)</para>
5271
5272         <para>The major effect of an <literal>INLINE</literal> pragma
5273         is to declare a function's &ldquo;cost&rdquo; to be very low.
5274         The normal unfolding machinery will then be very keen to
5275         inline it.</para>
5276
5277         <para>Syntactically, an <literal>INLINE</literal> pragma for a
5278         function can be put anywhere its type signature could be
5279         put.</para>
5280
5281         <para><literal>INLINE</literal> pragmas are a particularly
5282         good idea for the
5283         <literal>then</literal>/<literal>return</literal> (or
5284         <literal>bind</literal>/<literal>unit</literal>) functions in
5285         a monad.  For example, in GHC's own
5286         <literal>UniqueSupply</literal> monad code, we have:</para>
5287
5288 <programlisting>
5289 #ifdef __GLASGOW_HASKELL__
5290 {-# INLINE thenUs #-}
5291 {-# INLINE returnUs #-}
5292 #endif
5293 </programlisting>
5294
5295         <para>See also the <literal>NOINLINE</literal> pragma (<xref
5296         linkend="noinline-pragma"/>).</para>
5297       </sect3>
5298
5299       <sect3 id="noinline-pragma">
5300         <title>NOINLINE pragma</title>
5301         
5302         <indexterm><primary>NOINLINE</primary></indexterm>
5303         <indexterm><primary>NOTINLINE</primary></indexterm>
5304
5305         <para>The <literal>NOINLINE</literal> pragma does exactly what
5306         you'd expect: it stops the named function from being inlined
5307         by the compiler.  You shouldn't ever need to do this, unless
5308         you're very cautious about code size.</para>
5309
5310         <para><literal>NOTINLINE</literal> is a synonym for
5311         <literal>NOINLINE</literal> (<literal>NOINLINE</literal> is
5312         specified by Haskell 98 as the standard way to disable
5313         inlining, so it should be used if you want your code to be
5314         portable).</para>
5315       </sect3>
5316
5317       <sect3 id="phase-control">
5318         <title>Phase control</title>
5319
5320         <para> Sometimes you want to control exactly when in GHC's
5321         pipeline the INLINE pragma is switched on.  Inlining happens
5322         only during runs of the <emphasis>simplifier</emphasis>.  Each
5323         run of the simplifier has a different <emphasis>phase
5324         number</emphasis>; the phase number decreases towards zero.
5325         If you use <option>-dverbose-core2core</option> you'll see the
5326         sequence of phase numbers for successive runs of the
5327         simplifier.  In an INLINE pragma you can optionally specify a
5328         phase number, thus:
5329         <itemizedlist>
5330           <listitem>
5331             <para>"<literal>INLINE[k] f</literal>" means: do not inline
5332             <literal>f</literal>
5333               until phase <literal>k</literal>, but from phase
5334               <literal>k</literal> onwards be very keen to inline it.
5335             </para></listitem>
5336           <listitem>
5337             <para>"<literal>INLINE[~k] f</literal>" means: be very keen to inline
5338             <literal>f</literal>
5339               until phase <literal>k</literal>, but from phase
5340               <literal>k</literal> onwards do not inline it.
5341             </para></listitem>
5342           <listitem>
5343             <para>"<literal>NOINLINE[k] f</literal>" means: do not inline
5344             <literal>f</literal>
5345               until phase <literal>k</literal>, but from phase
5346               <literal>k</literal> onwards be willing to inline it (as if
5347               there was no pragma).
5348             </para></listitem>
5349             <listitem>
5350             <para>"<literal>INLINE[~k] f</literal>" means: be willing to inline
5351             <literal>f</literal>
5352               until phase <literal>k</literal>, but from phase
5353               <literal>k</literal> onwards do not inline it.
5354             </para></listitem>
5355         </itemizedlist>
5356 The same information is summarised here:
5357 <programlisting>
5358                            -- Before phase 2     Phase 2 and later
5359   {-# INLINE   [2]  f #-}  --      No                 Yes
5360   {-# INLINE   [~2] f #-}  --      Yes                No
5361   {-# NOINLINE [2]  f #-}  --      No                 Maybe
5362   {-# NOINLINE [~2] f #-}  --      Maybe              No
5363
5364   {-# INLINE   f #-}       --      Yes                Yes
5365   {-# NOINLINE f #-}       --      No                 No
5366 </programlisting>
5367 By "Maybe" we mean that the usual heuristic inlining rules apply (if the
5368 function body is small, or it is applied to interesting-looking arguments etc).
5369 Another way to understand the semantics is this:
5370 <itemizedlist>
5371 <listitem><para>For both INLINE and NOINLINE, the phase number says
5372 when inlining is allowed at all.</para></listitem>
5373 <listitem><para>The INLINE pragma has the additional effect of making the
5374 function body look small, so that when inlining is allowed it is very likely to
5375 happen.
5376 </para></listitem>
5377 </itemizedlist>
5378 </para>
5379 <para>The same phase-numbering control is available for RULES
5380         (<xref linkend="rewrite-rules"/>).</para>
5381       </sect3>
5382     </sect2>
5383
5384     <sect2 id="language-pragma">
5385       <title>LANGUAGE pragma</title>
5386
5387       <indexterm><primary>LANGUAGE</primary><secondary>pragma</secondary></indexterm>
5388       <indexterm><primary>pragma</primary><secondary>LANGUAGE</secondary></indexterm>
5389
5390       <para>This allows language extensions to be enabled in a portable way.
5391         It is the intention that all Haskell compilers support the
5392         <literal>LANGUAGE</literal> pragma with the same syntax, although not
5393         all extensions are supported by all compilers, of
5394         course.  The <literal>LANGUAGE</literal> pragma should be used instead
5395         of <literal>OPTIONS_GHC</literal>, if possible.</para>
5396
5397       <para>For example, to enable the FFI and preprocessing with CPP:</para>
5398
5399 <programlisting>{-# LANGUAGE ForeignFunctionInterface, CPP #-}</programlisting>
5400
5401       <para>Any extension from the <literal>Extension</literal> type defined in
5402         <ulink
5403           url="../libraries/Cabal/Language-Haskell-Extension.html"><literal>Language.Haskell.Extension</literal></ulink> may be used.  GHC will report an error if any of the requested extensions are not supported.</para>
5404     </sect2>
5405
5406
5407     <sect2 id="line-pragma">
5408       <title>LINE pragma</title>
5409
5410       <indexterm><primary>LINE</primary><secondary>pragma</secondary></indexterm>
5411       <indexterm><primary>pragma</primary><secondary>LINE</secondary></indexterm>
5412       <para>This pragma is similar to C's <literal>&num;line</literal>
5413       pragma, and is mainly for use in automatically generated Haskell
5414       code.  It lets you specify the line number and filename of the
5415       original code; for example</para>
5416
5417 <programlisting>{-# LINE 42 "Foo.vhs" #-}</programlisting>
5418
5419       <para>if you'd generated the current file from something called
5420       <filename>Foo.vhs</filename> and this line corresponds to line
5421       42 in the original.  GHC will adjust its error messages to refer
5422       to the line/file named in the <literal>LINE</literal>
5423       pragma.</para>
5424     </sect2>
5425
5426     <sect2 id="options-pragma">
5427       <title>OPTIONS_GHC pragma</title>
5428       <indexterm><primary>OPTIONS_GHC</primary>
5429       </indexterm>
5430       <indexterm><primary>pragma</primary><secondary>OPTIONS_GHC</secondary>
5431       </indexterm>
5432
5433       <para>The <literal>OPTIONS_GHC</literal> pragma is used to specify
5434       additional options that are given to the compiler when compiling
5435       this source file.  See <xref linkend="source-file-options"/> for
5436       details.</para>
5437
5438       <para>Previous versions of GHC accepted <literal>OPTIONS</literal> rather
5439         than <literal>OPTIONS_GHC</literal>, but that is now deprecated.</para>
5440     </sect2>
5441
5442     <sect2 id="rules">
5443       <title>RULES pragma</title>
5444
5445       <para>The RULES pragma lets you specify rewrite rules.  It is
5446       described in <xref linkend="rewrite-rules"/>.</para>
5447     </sect2>
5448
5449     <sect2 id="specialize-pragma">
5450       <title>SPECIALIZE pragma</title>
5451
5452       <indexterm><primary>SPECIALIZE pragma</primary></indexterm>
5453       <indexterm><primary>pragma, SPECIALIZE</primary></indexterm>
5454       <indexterm><primary>overloading, death to</primary></indexterm>
5455
5456       <para>(UK spelling also accepted.)  For key overloaded
5457       functions, you can create extra versions (NB: more code space)
5458       specialised to particular types.  Thus, if you have an
5459       overloaded function:</para>
5460
5461 <programlisting>
5462   hammeredLookup :: Ord key => [(key, value)] -> key -> value
5463 </programlisting>
5464
5465       <para>If it is heavily used on lists with
5466       <literal>Widget</literal> keys, you could specialise it as
5467       follows:</para>
5468
5469 <programlisting>
5470   {-# SPECIALIZE hammeredLookup :: [(Widget, value)] -> Widget -> value #-}
5471 </programlisting>
5472
5473       <para>A <literal>SPECIALIZE</literal> pragma for a function can
5474       be put anywhere its type signature could be put.</para>
5475
5476       <para>A <literal>SPECIALIZE</literal> has the effect of generating
5477       (a) a specialised version of the function and (b) a rewrite rule
5478       (see <xref linkend="rewrite-rules"/>) that rewrites a call to the
5479       un-specialised function into a call to the specialised one.</para>
5480
5481       <para>The type in a SPECIALIZE pragma can be any type that is less
5482         polymorphic than the type of the original function.  In concrete terms,
5483         if the original function is <literal>f</literal> then the pragma
5484 <programlisting>
5485   {-# SPECIALIZE f :: &lt;type&gt; #-}
5486 </programlisting>
5487       is valid if and only if the defintion
5488 <programlisting>
5489   f_spec :: &lt;type&gt;
5490   f_spec = f
5491 </programlisting>
5492       is valid.  Here are some examples (where we only give the type signature
5493       for the original function, not its code):
5494 <programlisting>
5495   f :: Eq a => a -> b -> b
5496   {-# SPECIALISE f :: Int -> b -> b #-}
5497
5498   g :: (Eq a, Ix b) => a -> b -> b
5499   {-# SPECIALISE g :: (Eq a) => a -> Int -> Int #-}
5500
5501   h :: Eq a => a -> a -> a
5502   {-# SPECIALISE h :: (Eq a) => [a] -> [a] -> [a] #-}
5503 </programlisting>  
5504 The last of these examples will generate a 
5505 RULE with a somewhat-complex left-hand side (try it yourself), so it might not fire very
5506 well.  If you use this kind of specialisation, let us know how well it works.
5507 </para>
5508
5509 <para>A <literal>SPECIALIZE</literal> pragma can optionally be followed with a
5510 <literal>INLINE</literal> or <literal>NOINLINE</literal> pragma, optionally 
5511 followed by a phase, as described in <xref linkend="inline-noinline-pragma"/>.
5512 The <literal>INLINE</literal> pragma affects the specialised verison of the
5513 function (only), and applies even if the function is recursive.  The motivating
5514 example is this:
5515 <programlisting>
5516 -- A GADT for arrays with type-indexed representation
5517 data Arr e where
5518   ArrInt :: !Int -> ByteArray# -> Arr Int
5519   ArrPair :: !Int -> Arr e1 -> Arr e2 -> Arr (e1, e2)
5520
5521 (!:) :: Arr e -> Int -> e
5522 {-# SPECIALISE INLINE (!:) :: Arr Int -> Int -> Int #-}
5523 {-# SPECIALISE INLINE (!:) :: Arr (a, b) -> Int -> (a, b) #-}
5524 (ArrInt _ ba)     !: (I# i) = I# (indexIntArray# ba i)
5525 (ArrPair _ a1 a2) !: i      = (a1 !: i, a2 !: i)
5526 </programlisting>
5527 Here, <literal>(!:)</literal> is a recursive function that indexes arrays
5528 of type <literal>Arr e</literal>.  Consider a call to  <literal>(!:)</literal>
5529 at type <literal>(Int,Int)</literal>.  The second specialisation will fire, and
5530 the specialised function will be inlined.  It has two calls to
5531 <literal>(!:)</literal>,
5532 both at type <literal>Int</literal>.  Both these calls fire the first
5533 specialisation, whose body is also inlined.  The result is a type-based
5534 unrolling of the indexing function.</para>
5535 <para>Warning: you can make GHC diverge by using <literal>SPECIALISE INLINE</literal>
5536 on an ordinarily-recursive function.</para>
5537
5538       <para>Note: In earlier versions of GHC, it was possible to provide your own
5539       specialised function for a given type:
5540
5541 <programlisting>
5542 {-# SPECIALIZE hammeredLookup :: [(Int, value)] -> Int -> value = intLookup #-}
5543 </programlisting>
5544
5545       This feature has been removed, as it is now subsumed by the
5546       <literal>RULES</literal> pragma (see <xref linkend="rule-spec"/>).</para>
5547
5548     </sect2>
5549
5550 <sect2 id="specialize-instance-pragma">
5551 <title>SPECIALIZE instance pragma
5552 </title>
5553
5554 <para>
5555 <indexterm><primary>SPECIALIZE pragma</primary></indexterm>
5556 <indexterm><primary>overloading, death to</primary></indexterm>
5557 Same idea, except for instance declarations.  For example:
5558
5559 <programlisting>
5560 instance (Eq a) => Eq (Foo a) where { 
5561    {-# SPECIALIZE instance Eq (Foo [(Int, Bar)]) #-}
5562    ... usual stuff ...
5563  }
5564 </programlisting>
5565 The pragma must occur inside the <literal>where</literal> part
5566 of the instance declaration.
5567 </para>
5568 <para>
5569 Compatible with HBC, by the way, except perhaps in the placement
5570 of the pragma.
5571 </para>
5572
5573 </sect2>
5574
5575     <sect2 id="unpack-pragma">
5576       <title>UNPACK pragma</title>
5577
5578       <indexterm><primary>UNPACK</primary></indexterm>
5579       
5580       <para>The <literal>UNPACK</literal> indicates to the compiler
5581       that it should unpack the contents of a constructor field into
5582       the constructor itself, removing a level of indirection.  For
5583       example:</para>
5584
5585 <programlisting>
5586 data T = T {-# UNPACK #-} !Float
5587            {-# UNPACK #-} !Float
5588 </programlisting>
5589
5590       <para>will create a constructor <literal>T</literal> containing
5591       two unboxed floats.  This may not always be an optimisation: if
5592       the <function>T</function> constructor is scrutinised and the
5593       floats passed to a non-strict function for example, they will
5594       have to be reboxed (this is done automatically by the
5595       compiler).</para>
5596
5597       <para>Unpacking constructor fields should only be used in
5598       conjunction with <option>-O</option>, in order to expose
5599       unfoldings to the compiler so the reboxing can be removed as
5600       often as possible.  For example:</para>
5601
5602 <programlisting>
5603 f :: T -&#62; Float
5604 f (T f1 f2) = f1 + f2
5605 </programlisting>
5606
5607       <para>The compiler will avoid reboxing <function>f1</function>
5608       and <function>f2</function> by inlining <function>+</function>
5609       on floats, but only when <option>-O</option> is on.</para>
5610
5611       <para>Any single-constructor data is eligible for unpacking; for
5612       example</para>
5613
5614 <programlisting>
5615 data T = T {-# UNPACK #-} !(Int,Int)
5616 </programlisting>
5617
5618       <para>will store the two <literal>Int</literal>s directly in the
5619       <function>T</function> constructor, by flattening the pair.
5620       Multi-level unpacking is also supported:</para>
5621
5622 <programlisting>
5623 data T = T {-# UNPACK #-} !S
5624 data S = S {-# UNPACK #-} !Int {-# UNPACK #-} !Int
5625 </programlisting>
5626
5627       <para>will store two unboxed <literal>Int&num;</literal>s
5628       directly in the <function>T</function> constructor.  The
5629       unpacker can see through newtypes, too.</para>
5630
5631       <para>If a field cannot be unpacked, you will not get a warning,
5632       so it might be an idea to check the generated code with
5633       <option>-ddump-simpl</option>.</para>
5634
5635       <para>See also the <option>-funbox-strict-fields</option> flag,
5636       which essentially has the effect of adding
5637       <literal>{-#&nbsp;UNPACK&nbsp;#-}</literal> to every strict
5638       constructor field.</para>
5639     </sect2>
5640
5641 </sect1>
5642
5643 <!--  ======================= REWRITE RULES ======================== -->
5644
5645 <sect1 id="rewrite-rules">
5646 <title>Rewrite rules
5647
5648 <indexterm><primary>RULES pragma</primary></indexterm>
5649 <indexterm><primary>pragma, RULES</primary></indexterm>
5650 <indexterm><primary>rewrite rules</primary></indexterm></title>
5651
5652 <para>
5653 The programmer can specify rewrite rules as part of the source program
5654 (in a pragma).  GHC applies these rewrite rules wherever it can, provided (a) 
5655 the <option>-O</option> flag (<xref linkend="options-optimise"/>) is on, 
5656 and (b) the <option>-frules-off</option> flag
5657 (<xref linkend="options-f"/>) is not specified, and (c) the
5658 <option>-fglasgow-exts</option> (<xref linkend="options-language"/>)
5659 flag is active.
5660 </para>
5661
5662 <para>
5663 Here is an example:
5664
5665 <programlisting>
5666   {-# RULES
5667         "map/map"       forall f g xs. map f (map g xs) = map (f.g) xs
5668   #-}
5669 </programlisting>
5670
5671 </para>
5672
5673 <sect2>
5674 <title>Syntax</title>
5675
5676 <para>
5677 From a syntactic point of view:
5678
5679 <itemizedlist>
5680 <listitem>
5681
5682 <para>
5683  There may be zero or more rules in a <literal>RULES</literal> pragma.
5684 </para>
5685 </listitem>
5686
5687 <listitem>
5688
5689 <para>
5690  Each rule has a name, enclosed in double quotes.  The name itself has
5691 no significance at all.  It is only used when reporting how many times the rule fired.
5692 </para>
5693 </listitem>
5694
5695 <listitem>
5696 <para>
5697 A rule may optionally have a phase-control number (see <xref linkend="phase-control"/>),
5698 immediately after the name of the rule.  Thus:
5699 <programlisting>
5700   {-# RULES
5701         "map/map" [2]  forall f g xs. map f (map g xs) = map (f.g) xs
5702   #-}
5703 </programlisting>
5704 The "[2]" means that the rule is active in Phase 2 and subsequent phases.  The inverse
5705 notation "[~2]" is also accepted, meaning that the rule is active up to, but not including,
5706 Phase 2.
5707 </para>
5708 </listitem>
5709
5710
5711 <listitem>
5712
5713 <para>
5714  Layout applies in a <literal>RULES</literal> pragma.  Currently no new indentation level
5715 is set, so you must lay out your rules starting in the same column as the
5716 enclosing definitions.
5717 </para>
5718 </listitem>
5719
5720 <listitem>
5721
5722 <para>
5723  Each variable mentioned in a rule must either be in scope (e.g. <function>map</function>),
5724 or bound by the <literal>forall</literal> (e.g. <function>f</function>, <function>g</function>, <function>xs</function>).  The variables bound by
5725 the <literal>forall</literal> are called the <emphasis>pattern</emphasis> variables.  They are separated
5726 by spaces, just like in a type <literal>forall</literal>.
5727 </para>
5728 </listitem>
5729 <listitem>
5730
5731 <para>
5732  A pattern variable may optionally have a type signature.
5733 If the type of the pattern variable is polymorphic, it <emphasis>must</emphasis> have a type signature.
5734 For example, here is the <literal>foldr/build</literal> rule:
5735
5736 <programlisting>
5737 "fold/build"  forall k z (g::forall b. (a->b->b) -> b -> b) .
5738               foldr k z (build g) = g k z
5739 </programlisting>
5740
5741 Since <function>g</function> has a polymorphic type, it must have a type signature.
5742
5743 </para>
5744 </listitem>
5745 <listitem>
5746
5747 <para>
5748 The left hand side of a rule must consist of a top-level variable applied
5749 to arbitrary expressions.  For example, this is <emphasis>not</emphasis> OK:
5750
5751 <programlisting>
5752 "wrong1"   forall e1 e2.  case True of { True -> e1; False -> e2 } = e1
5753 "wrong2"   forall f.      f True = True
5754 </programlisting>
5755
5756 In <literal>"wrong1"</literal>, the LHS is not an application; in <literal>"wrong2"</literal>, the LHS has a pattern variable
5757 in the head.
5758 </para>
5759 </listitem>
5760 <listitem>
5761
5762 <para>
5763  A rule does not need to be in the same module as (any of) the
5764 variables it mentions, though of course they need to be in scope.
5765 </para>
5766 </listitem>
5767 <listitem>
5768
5769 <para>
5770  Rules are automatically exported from a module, just as instance declarations are.
5771 </para>
5772 </listitem>
5773
5774 </itemizedlist>
5775
5776 </para>
5777
5778 </sect2>
5779
5780 <sect2>
5781 <title>Semantics</title>
5782
5783 <para>
5784 From a semantic point of view:
5785
5786 <itemizedlist>
5787 <listitem>
5788
5789 <para>
5790 Rules are only applied if you use the <option>-O</option> flag.
5791 </para>
5792 </listitem>
5793
5794 <listitem>
5795 <para>
5796  Rules are regarded as left-to-right rewrite rules.
5797 When GHC finds an expression that is a substitution instance of the LHS
5798 of a rule, it replaces the expression by the (appropriately-substituted) RHS.
5799 By "a substitution instance" we mean that the LHS can be made equal to the
5800 expression by substituting for the pattern variables.
5801
5802 </para>
5803 </listitem>
5804 <listitem>
5805
5806 <para>
5807  The LHS and RHS of a rule are typechecked, and must have the
5808 same type.
5809
5810 </para>
5811 </listitem>
5812 <listitem>
5813
5814 <para>
5815  GHC makes absolutely no attempt to verify that the LHS and RHS
5816 of a rule have the same meaning.  That is undecidable in general, and
5817 infeasible in most interesting cases.  The responsibility is entirely the programmer's!
5818
5819 </para>
5820 </listitem>
5821 <listitem>
5822
5823 <para>
5824  GHC makes no attempt to make sure that the rules are confluent or
5825 terminating.  For example:
5826
5827 <programlisting>
5828   "loop"        forall x,y.  f x y = f y x
5829 </programlisting>
5830
5831 This rule will cause the compiler to go into an infinite loop.
5832
5833 </para>
5834 </listitem>
5835 <listitem>
5836
5837 <para>
5838  If more than one rule matches a call, GHC will choose one arbitrarily to apply.
5839
5840 </para>
5841 </listitem>
5842 <listitem>
5843 <para>
5844  GHC currently uses a very simple, syntactic, matching algorithm
5845 for matching a rule LHS with an expression.  It seeks a substitution
5846 which makes the LHS and expression syntactically equal modulo alpha
5847 conversion.  The pattern (rule), but not the expression, is eta-expanded if
5848 necessary.  (Eta-expanding the expression can lead to laziness bugs.)
5849 But not beta conversion (that's called higher-order matching).
5850 </para>
5851
5852 <para>
5853 Matching is carried out on GHC's intermediate language, which includes
5854 type abstractions and applications.  So a rule only matches if the
5855 types match too.  See <xref linkend="rule-spec"/> below.
5856 </para>
5857 </listitem>
5858 <listitem>
5859
5860 <para>
5861  GHC keeps trying to apply the rules as it optimises the program.
5862 For example, consider:
5863
5864 <programlisting>
5865   let s = map f
5866       t = map g
5867   in
5868   s (t xs)
5869 </programlisting>
5870
5871 The expression <literal>s (t xs)</literal> does not match the rule <literal>"map/map"</literal>, but GHC
5872 will substitute for <varname>s</varname> and <varname>t</varname>, giving an expression which does match.
5873 If <varname>s</varname> or <varname>t</varname> was (a) used more than once, and (b) large or a redex, then it would
5874 not be substituted, and the rule would not fire.
5875
5876 </para>
5877 </listitem>
5878 <listitem>
5879
5880 <para>
5881  In the earlier phases of compilation, GHC inlines <emphasis>nothing
5882 that appears on the LHS of a rule</emphasis>, because once you have substituted
5883 for something you can't match against it (given the simple minded
5884 matching).  So if you write the rule
5885
5886 <programlisting>
5887         "map/map"       forall f,g.  map f . map g = map (f.g)
5888 </programlisting>
5889
5890 this <emphasis>won't</emphasis> match the expression <literal>map f (map g xs)</literal>.
5891 It will only match something written with explicit use of ".".
5892 Well, not quite.  It <emphasis>will</emphasis> match the expression
5893
5894 <programlisting>
5895 wibble f g xs
5896 </programlisting>
5897
5898 where <function>wibble</function> is defined:
5899
5900 <programlisting>
5901 wibble f g = map f . map g
5902 </programlisting>
5903
5904 because <function>wibble</function> will be inlined (it's small).
5905
5906 Later on in compilation, GHC starts inlining even things on the
5907 LHS of rules, but still leaves the rules enabled.  This inlining
5908 policy is controlled by the per-simplification-pass flag <option>-finline-phase</option><emphasis>n</emphasis>.
5909
5910 </para>
5911 </listitem>
5912 <listitem>
5913
5914 <para>
5915  All rules are implicitly exported from the module, and are therefore
5916 in force in any module that imports the module that defined the rule, directly
5917 or indirectly.  (That is, if A imports B, which imports C, then C's rules are
5918 in force when compiling A.)  The situation is very similar to that for instance
5919 declarations.
5920 </para>
5921 </listitem>
5922
5923 </itemizedlist>
5924
5925 </para>
5926
5927 </sect2>
5928
5929 <sect2>
5930 <title>List fusion</title>
5931
5932 <para>
5933 The RULES mechanism is used to implement fusion (deforestation) of common list functions.
5934 If a "good consumer" consumes an intermediate list constructed by a "good producer", the
5935 intermediate list should be eliminated entirely.
5936 </para>
5937
5938 <para>
5939 The following are good producers:
5940
5941 <itemizedlist>
5942 <listitem>
5943
5944 <para>
5945  List comprehensions
5946 </para>
5947 </listitem>
5948 <listitem>
5949
5950 <para>
5951  Enumerations of <literal>Int</literal> and <literal>Char</literal> (e.g. <literal>['a'..'z']</literal>).
5952 </para>
5953 </listitem>
5954 <listitem>
5955
5956 <para>
5957  Explicit lists (e.g. <literal>[True, False]</literal>)
5958 </para>
5959 </listitem>
5960 <listitem>
5961
5962 <para>
5963  The cons constructor (e.g <literal>3:4:[]</literal>)
5964 </para>
5965 </listitem>
5966 <listitem>
5967
5968 <para>
5969  <function>++</function>
5970 </para>
5971 </listitem>
5972
5973 <listitem>
5974 <para>
5975  <function>map</function>
5976 </para>
5977 </listitem>
5978
5979 <listitem>
5980 <para>
5981 <function>take</function>, <function>filter</function>
5982 </para>
5983 </listitem>
5984 <listitem>
5985
5986 <para>
5987  <function>iterate</function>, <function>repeat</function>
5988 </para>
5989 </listitem>
5990 <listitem>
5991
5992 <para>
5993  <function>zip</function>, <function>zipWith</function>
5994 </para>
5995 </listitem>
5996
5997 </itemizedlist>
5998
5999 </para>
6000
6001 <para>
6002 The following are good consumers:
6003
6004 <itemizedlist>
6005 <listitem>
6006
6007 <para>
6008  List comprehensions
6009 </para>
6010 </listitem>
6011 <listitem>
6012
6013 <para>
6014  <function>array</function> (on its second argument)
6015 </para>
6016 </listitem>
6017 <listitem>
6018
6019 <para>
6020  <function>++</function> (on its first argument)
6021 </para>
6022 </listitem>
6023
6024 <listitem>
6025 <para>
6026  <function>foldr</function>
6027 </para>
6028 </listitem>
6029
6030 <listitem>
6031 <para>
6032  <function>map</function>
6033 </para>
6034 </listitem>
6035 <listitem>
6036
6037 <para>
6038 <function>take</function>, <function>filter</function>
6039 </para>
6040 </listitem>
6041 <listitem>
6042
6043 <para>
6044  <function>concat</function>
6045 </para>
6046 </listitem>
6047 <listitem>
6048
6049 <para>
6050  <function>unzip</function>, <function>unzip2</function>, <function>unzip3</function>, <function>unzip4</function>
6051 </para>
6052 </listitem>
6053 <listitem>
6054
6055 <para>
6056  <function>zip</function>, <function>zipWith</function> (but on one argument only; if both are good producers, <function>zip</function>
6057 will fuse with one but not the other)
6058 </para>
6059 </listitem>
6060 <listitem>
6061
6062 <para>
6063  <function>partition</function>
6064 </para>
6065 </listitem>
6066 <listitem>
6067
6068 <para>
6069  <function>head</function>
6070 </para>
6071 </listitem>
6072 <listitem>
6073
6074 <para>
6075  <function>and</function>, <function>or</function>, <function>any</function>, <function>all</function>
6076 </para>
6077 </listitem>
6078 <listitem>
6079
6080 <para>
6081  <function>sequence&lowbar;</function>
6082 </para>
6083 </listitem>
6084 <listitem>
6085
6086 <para>
6087  <function>msum</function>
6088 </para>
6089 </listitem>
6090 <listitem>
6091
6092 <para>
6093  <function>sortBy</function>
6094 </para>
6095 </listitem>
6096
6097 </itemizedlist>
6098
6099 </para>
6100
6101  <para>
6102 So, for example, the following should generate no intermediate lists:
6103
6104 <programlisting>
6105 array (1,10) [(i,i*i) | i &#60;- map (+ 1) [0..9]]
6106 </programlisting>
6107
6108 </para>
6109
6110 <para>
6111 This list could readily be extended; if there are Prelude functions that you use
6112 a lot which are not included, please tell us.
6113 </para>
6114
6115 <para>
6116 If you want to write your own good consumers or producers, look at the
6117 Prelude definitions of the above functions to see how to do so.
6118 </para>
6119
6120 </sect2>
6121
6122 <sect2 id="rule-spec">
6123 <title>Specialisation
6124 </title>
6125
6126 <para>
6127 Rewrite rules can be used to get the same effect as a feature
6128 present in earlier versions of GHC.
6129 For example, suppose that:
6130
6131 <programlisting>
6132 genericLookup :: Ord a => Table a b   -> a   -> b
6133 intLookup     ::          Table Int b -> Int -> b
6134 </programlisting>
6135
6136 where <function>intLookup</function> is an implementation of
6137 <function>genericLookup</function> that works very fast for
6138 keys of type <literal>Int</literal>.  You might wish
6139 to tell GHC to use <function>intLookup</function> instead of
6140 <function>genericLookup</function> whenever the latter was called with
6141 type <literal>Table Int b -&gt; Int -&gt; b</literal>.
6142 It used to be possible to write
6143
6144 <programlisting>
6145 {-# SPECIALIZE genericLookup :: Table Int b -> Int -> b = intLookup #-}
6146 </programlisting>
6147
6148 This feature is no longer in GHC, but rewrite rules let you do the same thing:
6149
6150 <programlisting>
6151 {-# RULES "genericLookup/Int" genericLookup = intLookup #-}
6152 </programlisting>
6153
6154 This slightly odd-looking rule instructs GHC to replace
6155 <function>genericLookup</function> by <function>intLookup</function>
6156 <emphasis>whenever the types match</emphasis>.
6157 What is more, this rule does not need to be in the same
6158 file as <function>genericLookup</function>, unlike the
6159 <literal>SPECIALIZE</literal> pragmas which currently do (so that they
6160 have an original definition available to specialise).
6161 </para>
6162
6163 <para>It is <emphasis>Your Responsibility</emphasis> to make sure that
6164 <function>intLookup</function> really behaves as a specialised version
6165 of <function>genericLookup</function>!!!</para>
6166
6167 <para>An example in which using <literal>RULES</literal> for
6168 specialisation will Win Big:
6169
6170 <programlisting>
6171 toDouble :: Real a => a -> Double
6172 toDouble = fromRational . toRational
6173
6174 {-# RULES "toDouble/Int" toDouble = i2d #-}
6175 i2d (I# i) = D# (int2Double# i) -- uses Glasgow prim-op directly
6176 </programlisting>
6177
6178 The <function>i2d</function> function is virtually one machine
6179 instruction; the default conversion&mdash;via an intermediate
6180 <literal>Rational</literal>&mdash;is obscenely expensive by
6181 comparison.
6182 </para>
6183
6184 </sect2>
6185
6186 <sect2>
6187 <title>Controlling what's going on</title>
6188
6189 <para>
6190
6191 <itemizedlist>
6192 <listitem>
6193
6194 <para>
6195  Use <option>-ddump-rules</option> to see what transformation rules GHC is using.
6196 </para>
6197 </listitem>
6198 <listitem>
6199
6200 <para>
6201  Use <option>-ddump-simpl-stats</option> to see what rules are being fired.
6202 If you add <option>-dppr-debug</option> you get a more detailed listing.
6203 </para>
6204 </listitem>
6205 <listitem>
6206
6207 <para>
6208  The definition of (say) <function>build</function> in <filename>GHC/Base.lhs</filename> looks llike this:
6209
6210 <programlisting>
6211         build   :: forall a. (forall b. (a -> b -> b) -> b -> b) -> [a]
6212         {-# INLINE build #-}
6213         build g = g (:) []
6214 </programlisting>
6215
6216 Notice the <literal>INLINE</literal>!  That prevents <literal>(:)</literal> from being inlined when compiling
6217 <literal>PrelBase</literal>, so that an importing module will &ldquo;see&rdquo; the <literal>(:)</literal>, and can
6218 match it on the LHS of a rule.  <literal>INLINE</literal> prevents any inlining happening
6219 in the RHS of the <literal>INLINE</literal> thing.  I regret the delicacy of this.
6220
6221 </para>
6222 </listitem>
6223 <listitem>
6224
6225 <para>
6226  In <filename>libraries/base/GHC/Base.lhs</filename> look at the rules for <function>map</function> to
6227 see how to write rules that will do fusion and yet give an efficient
6228 program even if fusion doesn't happen.  More rules in <filename>GHC/List.lhs</filename>.
6229 </para>
6230 </listitem>
6231
6232 </itemizedlist>
6233
6234 </para>
6235
6236 </sect2>
6237
6238 <sect2 id="core-pragma">
6239   <title>CORE pragma</title>
6240
6241   <indexterm><primary>CORE pragma</primary></indexterm>
6242   <indexterm><primary>pragma, CORE</primary></indexterm>
6243   <indexterm><primary>core, annotation</primary></indexterm>
6244
6245 <para>
6246   The external core format supports <quote>Note</quote> annotations;
6247   the <literal>CORE</literal> pragma gives a way to specify what these
6248   should be in your Haskell source code.  Syntactically, core
6249   annotations are attached to expressions and take a Haskell string
6250   literal as an argument.  The following function definition shows an
6251   example:
6252
6253 <programlisting>
6254 f x = ({-# CORE "foo" #-} show) ({-# CORE "bar" #-} x)
6255 </programlisting>
6256
6257   Semantically, this is equivalent to:
6258
6259 <programlisting>
6260 g x = show x
6261 </programlisting>
6262 </para>
6263
6264 <para>
6265   However, when external for is generated (via
6266   <option>-fext-core</option>), there will be Notes attached to the
6267   expressions <function>show</function> and <varname>x</varname>.
6268   The core function declaration for <function>f</function> is:
6269 </para>
6270
6271 <programlisting>
6272   f :: %forall a . GHCziShow.ZCTShow a ->
6273                    a -> GHCziBase.ZMZN GHCziBase.Char =
6274     \ @ a (zddShow::GHCziShow.ZCTShow a) (eta::a) ->
6275         (%note "foo"
6276          %case zddShow %of (tpl::GHCziShow.ZCTShow a)
6277            {GHCziShow.ZCDShow
6278             (tpl1::GHCziBase.Int ->
6279                    a ->
6280                    GHCziBase.ZMZN GHCziBase.Char -> GHCziBase.ZMZN GHCziBase.Cha
6281 r)
6282             (tpl2::a -> GHCziBase.ZMZN GHCziBase.Char)
6283             (tpl3::GHCziBase.ZMZN a ->
6284                    GHCziBase.ZMZN GHCziBase.Char -> GHCziBase.ZMZN GHCziBase.Cha
6285 r) ->
6286               tpl2})
6287         (%note "bar"
6288          eta);
6289 </programlisting>
6290
6291 <para>
6292   Here, we can see that the function <function>show</function> (which
6293   has been expanded out to a case expression over the Show dictionary)
6294   has a <literal>%note</literal> attached to it, as does the
6295   expression <varname>eta</varname> (which used to be called
6296   <varname>x</varname>).
6297 </para>
6298
6299 </sect2>
6300
6301 </sect1>
6302
6303 <sect1 id="special-ids">
6304 <title>Special built-in functions</title>
6305 <para>GHC has a few built-in funcions with special behaviour, 
6306 described in this section.  All are exported by
6307 <literal>GHC.Exts</literal>.</para>
6308
6309 <sect2> <title>The <literal>seq</literal> function </title>
6310 <para>
6311 The function <literal>seq</literal> is as described in the Haskell98 Report.
6312 <programlisting>
6313   seq :: a -> b -> b
6314 </programlisting>
6315 It evaluates its first argument to head normal form, and then returns its
6316 second argument as the result.  The reason that it is documented here is 
6317 that, despite <literal>seq</literal>'s polymorphism, its 
6318 second argument can have an unboxed type, or
6319 can be an unboxed tuple; for example <literal>(seq x 4#)</literal>
6320 or <literal>(seq x (# p,q #))</literal>.  This requires <literal>b</literal>
6321 to be instantiated to an unboxed type, which is not usually allowed.
6322 </para>
6323 </sect2>
6324
6325 <sect2> <title>The <literal>inline</literal> function </title>
6326 <para>
6327 The <literal>inline</literal> function is somewhat experimental.
6328 <programlisting>
6329   inline :: a -> a
6330 </programlisting>
6331 The call <literal>(inline f)</literal> arranges that <literal>f</literal> 
6332 is inlined, regardless of its size.  More precisely, the call
6333 <literal>(inline f)</literal> rewrites to the right-hand side of <literal>f</literal>'s 
6334 definition.  
6335 This allows the programmer to control inlining from 
6336 a particular <emphasis>call site</emphasis>
6337 rather than the <emphasis>definition site</emphasis> of the function 
6338 (c.f. <literal>INLINE</literal> pragmas <xref linkend="inline-noinline-pragma"/>).
6339 </para>
6340 <para>
6341 This inlining occurs regardless of the argument to the call
6342 or the size of <literal>f</literal>'s definition; it is unconditional.
6343 The main caveat is that <literal>f</literal>'s definition must be
6344 visible to the compiler.  That is, <literal>f</literal> must be
6345 let-bound in the current scope.
6346 If no inlining takes place, the <literal>inline</literal> function
6347 expands to the identity function in Phase zero; so its use imposes
6348 no overhead.</para>
6349
6350 <para> If the function is defined in another
6351 module, GHC only exposes its inlining in the interface file if the
6352 function is sufficiently small that it <emphasis>might</emphasis> be
6353 inlined by the automatic mechanism.  There is currently no way to tell
6354 GHC to expose arbitrarily-large functions in the interface file.  (This
6355 shortcoming is something that could be fixed, with some kind of pragma.)
6356 </para>
6357 </sect2>
6358
6359 <sect2> <title>The <literal>lazy</literal> function </title>
6360 <para>
6361 The <literal>lazy</literal> function restrains strictness analysis a little:
6362 <programlisting>
6363   lazy :: a -> a
6364 </programlisting>
6365 The call <literal>(lazy e)</literal> means the same as <literal>e</literal>, 
6366 but <literal>lazy</literal> has a magical property so far as strictness
6367 analysis is concerned: it is lazy in its first argument,
6368 even though its semantics is strict.  After strictness analysis has run,
6369 calls to <literal>lazy</literal> are inlined to be the identity function.
6370 </para>
6371 <para>
6372 This behaviour is occasionally useful when controlling evaluation order.
6373 Notably, <literal>lazy</literal> is used in the library definition of
6374 <literal>Control.Parallel.par</literal>:
6375 <programlisting>
6376   par :: a -> b -> b
6377   par x y = case (par# x) of { _ -> lazy y }
6378 </programlisting>
6379 If <literal>lazy</literal> were not lazy, <literal>par</literal> would
6380 look strict in <literal>y</literal> which would defeat the whole 
6381 purpose of <literal>par</literal>.
6382 </para>
6383 <para>
6384 Like <literal>seq</literal>, the argument of <literal>lazy</literal> can have
6385 an unboxed type.
6386 </para>
6387
6388 </sect2>
6389
6390 <sect2> <title>The <literal>unsafeCoerce#</literal> function </title>
6391 <para>
6392 The function <literal>unsafeCoerce#</literal> allows you to side-step the
6393 typechecker entirely.  It has type
6394 <programlisting>
6395   unsafeCoerce# :: a -> b
6396 </programlisting>
6397 That is, it allows you to coerce any type into any other type.  If you use this
6398 function, you had better get it right, otherwise segmentation faults await. 
6399 It is generally used when you want to write a program that you know is
6400 well-typed, but where Haskell's type system is not expressive enough to prove
6401 that it is well typed.
6402 </para>
6403 <para>
6404 The argument to <literal>unsafeCoerce#</literal> can have unboxed types,
6405 although extremely bad things will happen if you coerce a boxed type 
6406 to an unboxed type.
6407 </para>
6408
6409 </sect2>
6410
6411 </sect1>
6412
6413
6414 <sect1 id="generic-classes">
6415 <title>Generic classes</title>
6416
6417 <para>
6418 The ideas behind this extension are described in detail in "Derivable type classes",
6419 Ralf Hinze and Simon Peyton Jones, Haskell Workshop, Montreal Sept 2000, pp94-105.
6420 An example will give the idea:
6421 </para>
6422
6423 <programlisting>
6424   import Generics
6425
6426   class Bin a where
6427     toBin   :: a -> [Int]
6428     fromBin :: [Int] -> (a, [Int])
6429   
6430     toBin {| Unit |}    Unit      = []
6431     toBin {| a :+: b |} (Inl x)   = 0 : toBin x
6432     toBin {| a :+: b |} (Inr y)   = 1 : toBin y
6433     toBin {| a :*: b |} (x :*: y) = toBin x ++ toBin y
6434   
6435     fromBin {| Unit |}    bs      = (Unit, bs)
6436     fromBin {| a :+: b |} (0:bs)  = (Inl x, bs')    where (x,bs') = fromBin bs
6437     fromBin {| a :+: b |} (1:bs)  = (Inr y, bs')    where (y,bs') = fromBin bs
6438     fromBin {| a :*: b |} bs      = (x :*: y, bs'') where (x,bs' ) = fromBin bs
6439                                                           (y,bs'') = fromBin bs'
6440 </programlisting>
6441 <para>
6442 This class declaration explains how <literal>toBin</literal> and <literal>fromBin</literal>
6443 work for arbitrary data types.  They do so by giving cases for unit, product, and sum,
6444 which are defined thus in the library module <literal>Generics</literal>:
6445 </para>
6446 <programlisting>
6447   data Unit    = Unit
6448   data a :+: b = Inl a | Inr b
6449   data a :*: b = a :*: b
6450 </programlisting>
6451 <para>
6452 Now you can make a data type into an instance of Bin like this:
6453 <programlisting>
6454   instance (Bin a, Bin b) => Bin (a,b)
6455   instance Bin a => Bin [a]
6456 </programlisting>
6457 That is, just leave off the "where" clause.  Of course, you can put in the
6458 where clause and over-ride whichever methods you please.
6459 </para>
6460
6461     <sect2>
6462       <title> Using generics </title>
6463       <para>To use generics you need to</para>
6464       <itemizedlist>
6465         <listitem>
6466           <para>Use the flags <option>-fglasgow-exts</option> (to enable the extra syntax), 
6467                 <option>-fgenerics</option> (to generate extra per-data-type code),
6468                 and <option>-package lang</option> (to make the <literal>Generics</literal> library
6469                 available.  </para>
6470         </listitem>
6471         <listitem>
6472           <para>Import the module <literal>Generics</literal> from the
6473           <literal>lang</literal> package.  This import brings into
6474           scope the data types <literal>Unit</literal>,
6475           <literal>:*:</literal>, and <literal>:+:</literal>.  (You
6476           don't need this import if you don't mention these types
6477           explicitly; for example, if you are simply giving instance
6478           declarations.)</para>
6479         </listitem>
6480       </itemizedlist>
6481     </sect2>
6482
6483 <sect2> <title> Changes wrt the paper </title>
6484 <para>
6485 Note that the type constructors <literal>:+:</literal> and <literal>:*:</literal> 
6486 can be written infix (indeed, you can now use
6487 any operator starting in a colon as an infix type constructor).  Also note that
6488 the type constructors are not exactly as in the paper (Unit instead of 1, etc).
6489 Finally, note that the syntax of the type patterns in the class declaration
6490 uses "<literal>{|</literal>" and "<literal>|}</literal>" brackets; curly braces
6491 alone would ambiguous when they appear on right hand sides (an extension we 
6492 anticipate wanting).
6493 </para>
6494 </sect2>
6495
6496 <sect2> <title>Terminology and restrictions</title>
6497 <para>
6498 Terminology.  A "generic default method" in a class declaration
6499 is one that is defined using type patterns as above.
6500 A "polymorphic default method" is a default method defined as in Haskell 98.
6501 A "generic class declaration" is a class declaration with at least one
6502 generic default method.
6503 </para>
6504
6505 <para>
6506 Restrictions:
6507 <itemizedlist>
6508 <listitem>
6509 <para>
6510 Alas, we do not yet implement the stuff about constructor names and 
6511 field labels.
6512 </para>
6513 </listitem>
6514
6515 <listitem>
6516 <para>
6517 A generic class can have only one parameter; you can't have a generic
6518 multi-parameter class.
6519 </para>
6520 </listitem>
6521
6522 <listitem>
6523 <para>
6524 A default method must be defined entirely using type patterns, or entirely
6525 without.  So this is illegal:
6526 <programlisting>
6527   class Foo a where
6528     op :: a -> (a, Bool)
6529     op {| Unit |} Unit = (Unit, True)
6530     op x               = (x,    False)
6531 </programlisting>
6532 However it is perfectly OK for some methods of a generic class to have 
6533 generic default methods and others to have polymorphic default methods.
6534 </para>
6535 </listitem>
6536
6537 <listitem>
6538 <para>
6539 The type variable(s) in the type pattern for a generic method declaration
6540 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:
6541 <programlisting>
6542   class Foo a where
6543     op :: a -> Bool
6544     op {| p :*: q |} (x :*: y) = op (x :: p)
6545     ...
6546 </programlisting>
6547 </para>
6548 </listitem>
6549
6550 <listitem>
6551 <para>
6552 The type patterns in a generic default method must take one of the forms:
6553 <programlisting>
6554        a :+: b
6555        a :*: b
6556        Unit
6557 </programlisting>
6558 where "a" and "b" are type variables.  Furthermore, all the type patterns for
6559 a single type constructor (<literal>:*:</literal>, say) must be identical; they
6560 must use the same type variables.  So this is illegal:
6561 <programlisting>
6562   class Foo a where
6563     op :: a -> Bool
6564     op {| a :+: b |} (Inl x) = True
6565     op {| p :+: q |} (Inr y) = False
6566 </programlisting>
6567 The type patterns must be identical, even in equations for different methods of the class.
6568 So this too is illegal:
6569 <programlisting>
6570   class Foo a where
6571     op1 :: a -> Bool
6572     op1 {| a :*: b |} (x :*: y) = True
6573
6574     op2 :: a -> Bool
6575     op2 {| p :*: q |} (x :*: y) = False
6576 </programlisting>
6577 (The reason for this restriction is that we gather all the equations for a particular type consructor
6578 into a single generic instance declaration.)
6579 </para>
6580 </listitem>
6581
6582 <listitem>
6583 <para>
6584 A generic method declaration must give a case for each of the three type constructors.
6585 </para>
6586 </listitem>
6587
6588 <listitem>
6589 <para>
6590 The type for a generic method can be built only from:
6591   <itemizedlist>
6592   <listitem> <para> Function arrows </para> </listitem>
6593   <listitem> <para> Type variables </para> </listitem>
6594   <listitem> <para> Tuples </para> </listitem>
6595   <listitem> <para> Arbitrary types not involving type variables </para> </listitem>
6596   </itemizedlist>
6597 Here are some example type signatures for generic methods:
6598 <programlisting>
6599     op1 :: a -> Bool
6600     op2 :: Bool -> (a,Bool)
6601     op3 :: [Int] -> a -> a
6602     op4 :: [a] -> Bool
6603 </programlisting>
6604 Here, op1, op2, op3 are OK, but op4 is rejected, because it has a type variable
6605 inside a list.  
6606 </para>
6607 <para>
6608 This restriction is an implementation restriction: we just havn't got around to
6609 implementing the necessary bidirectional maps over arbitrary type constructors.
6610 It would be relatively easy to add specific type constructors, such as Maybe and list,
6611 to the ones that are allowed.</para>
6612 </listitem>
6613
6614 <listitem>
6615 <para>
6616 In an instance declaration for a generic class, the idea is that the compiler
6617 will fill in the methods for you, based on the generic templates.  However it can only
6618 do so if
6619   <itemizedlist>
6620   <listitem>
6621   <para>
6622   The instance type is simple (a type constructor applied to type variables, as in Haskell 98).
6623   </para>
6624   </listitem>
6625   <listitem>
6626   <para>
6627   No constructor of the instance type has unboxed fields.
6628   </para>
6629   </listitem>
6630   </itemizedlist>
6631 (Of course, these things can only arise if you are already using GHC extensions.)
6632 However, you can still give an instance declarations for types which break these rules,
6633 provided you give explicit code to override any generic default methods.
6634 </para>
6635 </listitem>
6636
6637 </itemizedlist>
6638 </para>
6639
6640 <para>
6641 The option <option>-ddump-deriv</option> dumps incomprehensible stuff giving details of 
6642 what the compiler does with generic declarations.
6643 </para>
6644
6645 </sect2>
6646
6647 <sect2> <title> Another example </title>
6648 <para>
6649 Just to finish with, here's another example I rather like:
6650 <programlisting>
6651   class Tag a where
6652     nCons :: a -> Int
6653     nCons {| Unit |}    _ = 1
6654     nCons {| a :*: b |} _ = 1
6655     nCons {| a :+: b |} _ = nCons (bot::a) + nCons (bot::b)
6656   
6657     tag :: a -> Int
6658     tag {| Unit |}    _       = 1
6659     tag {| a :*: b |} _       = 1   
6660     tag {| a :+: b |} (Inl x) = tag x
6661     tag {| a :+: b |} (Inr y) = nCons (bot::a) + tag y
6662 </programlisting>
6663 </para>
6664 </sect2>
6665 </sect1>
6666
6667 <sect1 id="monomorphism">
6668 <title>Control over monomorphism</title>
6669
6670 <para>GHC supports two flags that control the way in which generalisation is
6671 carried out at let and where bindings.
6672 </para>
6673
6674 <sect2>
6675 <title>Switching off the dreaded Monomorphism Restriction</title>
6676           <indexterm><primary><option>-fno-monomorphism-restriction</option></primary></indexterm>
6677
6678 <para>Haskell's monomorphism restriction (see 
6679 <ulink url="http://haskell.org/onlinereport/decls.html#sect4.5.5">Section
6680 4.5.5</ulink>
6681 of the Haskell Report)
6682 can be completely switched off by
6683 <option>-fno-monomorphism-restriction</option>.
6684 </para>
6685 </sect2>
6686
6687 <sect2>
6688 <title>Monomorphic pattern bindings</title>
6689           <indexterm><primary><option>-fno-mono-pat-binds</option></primary></indexterm>
6690           <indexterm><primary><option>-fmono-pat-binds</option></primary></indexterm>
6691
6692           <para> As an experimental change, we are exploring the possibility of
6693           making pattern bindings monomorphic; that is, not generalised at all.  
6694             A pattern binding is a binding whose LHS has no function arguments,
6695             and is not a simple variable.  For example:
6696 <programlisting>
6697   f x = x                    -- Not a pattern binding
6698   f = \x -> x                -- Not a pattern binding
6699   f :: Int -> Int = \x -> x  -- Not a pattern binding
6700
6701   (g,h) = e                  -- A pattern binding
6702   (f) = e                    -- A pattern binding
6703   [x] = e                    -- A pattern binding
6704 </programlisting>
6705 Experimentally, GHC now makes pattern bindings monomorphic <emphasis>by
6706 default</emphasis>.  Use <option>-fno-mono-pat-binds</option> to recover the
6707 standard behaviour.
6708 </para>
6709 </sect2>
6710 </sect1>
6711
6712
6713
6714 <!-- Emacs stuff:
6715      ;;; Local Variables: ***
6716      ;;; mode: xml ***
6717      ;;; sgml-parent-document: ("users_guide.xml" "book" "chapter" "sect1") ***
6718      ;;; End: ***
6719  -->
6720