81d77dd18193c20dc14e411ba3b5c179f05b23f0
[ghc-hetmet.git] / ghc / docs / users_guide / glasgow_exts.sgml
1 <para>
2 <indexterm><primary>language, GHC</primary></indexterm>
3 <indexterm><primary>extensions, GHC</primary></indexterm>
4 As with all known Haskell systems, GHC implements some extensions to
5 the language.  They are all enabled by options; by default GHC
6 understands only plain Haskell 98.
7 </para>
8
9 <para>
10 Some of the Glasgow extensions serve to give you access to the
11 underlying facilities with which we implement Haskell.  Thus, you can
12 get at the Raw Iron, if you are willing to write some non-portable
13 code at a more primitive level.  You need not be &ldquo;stuck&rdquo;
14 on performance because of the implementation costs of Haskell's
15 &ldquo;high-level&rdquo; features&mdash;you can always code
16 &ldquo;under&rdquo; them.  In an extreme case, you can write all your
17 time-critical code in C, and then just glue it together with Haskell!
18 </para>
19
20 <para>
21 Before you get too carried away working at the lowest level (e.g.,
22 sloshing <literal>MutableByteArray&num;</literal>s around your
23 program), you may wish to check if there are libraries that provide a
24 &ldquo;Haskellised veneer&rdquo; over the features you want.  The
25 separate <ulink url="../libraries/index.html">libraries
26 documentation</ulink> describes all the libraries that come with GHC.
27 </para>
28
29 <!-- LANGUAGE OPTIONS -->
30   <sect1 id="options-language">
31     <title>Language options</title>
32
33     <indexterm><primary>language</primary><secondary>option</secondary>
34     </indexterm>
35     <indexterm><primary>options</primary><secondary>language</secondary>
36     </indexterm>
37     <indexterm><primary>extensions</primary><secondary>options controlling</secondary>
38     </indexterm>
39
40     <para>These flags control what variation of the language are
41     permitted.  Leaving out all of them gives you standard Haskell
42     98.</para>
43
44     <para>NB. turning on an option that enables special syntax
45     <emphasis>might</emphasis> cause working Haskell 98 code to fail
46     to compile, perhaps because it uses a variable name which has
47     become a reserved word.  So, together with each option below, we
48     list the special syntax which is enabled by this option.  We use
49     notation and nonterminal names from the Haskell 98 lexical syntax
50     (see the Haskell 98 Report).  There are two classes of special
51     syntax:</para>
52
53     <itemizedlist>
54       <listitem>
55         <para>New reserved words and symbols: character sequences
56         which are no longer available for use as identifiers in the
57         program.</para>
58       </listitem>
59       <listitem>
60         <para>Other special syntax: sequences of characters that have
61         a different meaning when this particular option is turned
62         on.</para>
63       </listitem>
64     </itemizedlist>
65
66     <para>We are only listing syntax changes here that might affect
67     existing working programs (i.e. "stolen" syntax).  Many of these
68     extensions will also enable new context-free syntax, but in all
69     cases programs written to use the new syntax would not be
70     compilable without the option enabled.</para>
71
72     <variablelist>
73
74       <varlistentry>
75         <term><option>-fglasgow-exts</option>:</term>
76         <indexterm><primary><option>-fglasgow-exts</option></primary></indexterm>
77         <listitem>
78           <para>This simultaneously enables all of the extensions to
79           Haskell 98 described in <xref
80           linkend="ghc-language-features"/>, except where otherwise
81           noted. </para>
82
83           <para>New reserved words: <literal>forall</literal> (only in
84           types), <literal>mdo</literal>.</para>
85
86           <para>Other syntax stolen:
87               <replaceable>varid</replaceable>{<literal>&num;</literal>},
88               <replaceable>char</replaceable><literal>&num;</literal>,      
89               <replaceable>string</replaceable><literal>&num;</literal>,    
90               <replaceable>integer</replaceable><literal>&num;</literal>,    
91               <replaceable>float</replaceable><literal>&num;</literal>,    
92               <replaceable>float</replaceable><literal>&num;&num;</literal>,    
93               <literal>(&num;</literal>, <literal>&num;)</literal>,         
94               <literal>|)</literal>, <literal>{|</literal>.</para>
95         </listitem>
96       </varlistentry>
97
98       <varlistentry>
99         <term><option>-ffi</option> and <option>-fffi</option>:</term>
100         <indexterm><primary><option>-ffi</option></primary></indexterm>
101         <indexterm><primary><option>-fffi</option></primary></indexterm>
102         <listitem>
103           <para>This option enables the language extension defined in the
104           Haskell 98 Foreign Function Interface Addendum plus deprecated
105           syntax of previous versions of the FFI for backwards
106           compatibility.</para> 
107
108           <para>New reserved words: <literal>foreign</literal>.</para>
109         </listitem>
110       </varlistentry>
111
112       <varlistentry>
113         <term><option>-fno-monomorphism-restriction</option>:</term>
114         <indexterm><primary><option>-fno-monomorphism-restriction</option></primary></indexterm>
115         <listitem>
116           <para> Switch off the Haskell 98 monomorphism restriction.
117           Independent of the <option>-fglasgow-exts</option>
118           flag. </para>
119         </listitem>
120       </varlistentry>
121
122       <varlistentry>
123         <term><option>-fallow-overlapping-instances</option></term>
124         <term><option>-fallow-undecidable-instances</option></term>
125         <term><option>-fallow-incoherent-instances</option></term>
126         <term><option>-fcontext-stack</option></term>
127         <indexterm><primary><option>-fallow-overlapping-instances</option></primary></indexterm>
128         <indexterm><primary><option>-fallow-undecidable-instances</option></primary></indexterm>
129         <indexterm><primary><option>-fcontext-stack</option></primary></indexterm>
130         <listitem>
131           <para> See <xref linkend="instance-decls"/>.  Only relevant
132           if you also use <option>-fglasgow-exts</option>.</para>
133         </listitem>
134       </varlistentry>
135
136       <varlistentry>
137         <term><option>-finline-phase</option></term>
138         <indexterm><primary><option>-finline-phase</option></primary></indexterm>
139         <listitem>
140           <para>See <xref linkend="rewrite-rules"/>.  Only relevant if
141           you also use <option>-fglasgow-exts</option>.</para>
142         </listitem>
143       </varlistentry>
144
145       <varlistentry>
146         <term><option>-farrows</option></term>
147         <indexterm><primary><option>-farrows</option></primary></indexterm>
148         <listitem>
149           <para>See <xref linkend="arrow-notation"/>.  Independent of
150           <option>-fglasgow-exts</option>.</para>
151
152           <para>New reserved words/symbols: <literal>rec</literal>,
153           <literal>proc</literal>, <literal>-&lt;</literal>,
154           <literal>&gt;-</literal>, <literal>-&lt;&lt;</literal>,
155           <literal>&gt;&gt;-</literal>.</para>
156
157           <para>Other syntax stolen: <literal>(|</literal>,
158           <literal>|)</literal>.</para>
159         </listitem>
160       </varlistentry>
161
162       <varlistentry>
163         <term><option>-fgenerics</option></term>
164         <indexterm><primary><option>-fgenerics</option></primary></indexterm>
165         <listitem>
166           <para>See <xref linkend="generic-classes"/>.  Independent of
167           <option>-fglasgow-exts</option>.</para>
168         </listitem>
169       </varlistentry>
170
171       <varlistentry>
172         <term><option>-fno-implicit-prelude</option></term>
173         <listitem>
174           <para><indexterm><primary>-fno-implicit-prelude
175           option</primary></indexterm> GHC normally imports
176           <filename>Prelude.hi</filename> files for you.  If you'd
177           rather it didn't, then give it a
178           <option>-fno-implicit-prelude</option> option.  The idea is
179           that you can then import a Prelude of your own.  (But don't
180           call it <literal>Prelude</literal>; the Haskell module
181           namespace is flat, and you must not conflict with any
182           Prelude module.)</para>
183
184           <para>Even though you have not imported the Prelude, most of
185           the built-in syntax still refers to the built-in Haskell
186           Prelude types and values, as specified by the Haskell
187           Report.  For example, the type <literal>[Int]</literal>
188           still means <literal>Prelude.[] Int</literal>; tuples
189           continue to refer to the standard Prelude tuples; the
190           translation for list comprehensions continues to use
191           <literal>Prelude.map</literal> etc.</para>
192
193           <para>However, <option>-fno-implicit-prelude</option> does
194           change the handling of certain built-in syntax: see <xref
195           linkend="rebindable-syntax"/>.</para>
196         </listitem>
197       </varlistentry>
198
199       <varlistentry>
200         <term><option>-fth</option></term>
201         <listitem>
202           <para>Enables Template Haskell (see <xref
203           linkend="template-haskell"/>).  Currently also implied by
204           <option>-fglasgow-exts</option>.</para>
205
206           <para>Syntax stolen: <literal>[|</literal>,
207           <literal>[e|</literal>, <literal>[p|</literal>,
208           <literal>[d|</literal>, <literal>[t|</literal>,
209           <literal>$(</literal>,
210           <literal>$<replaceable>varid</replaceable></literal>.</para>
211         </listitem>
212       </varlistentry>
213
214       <varlistentry>
215         <term><option>-fimplicit-params</option></term>
216         <listitem>
217           <para>Enables implicit parameters (see <xref
218           linkend="implicit-parameters"/>).  Currently also implied by 
219           <option>-fglasgow-exts</option>.</para>
220
221           <para>Syntax stolen:
222           <literal>?<replaceable>varid</replaceable></literal>,
223           <literal>%<replaceable>varid</replaceable></literal>.</para>
224         </listitem>
225       </varlistentry>
226
227     </variablelist>
228   </sect1>
229
230 <!-- UNBOXED TYPES AND PRIMITIVE OPERATIONS -->
231 <!--    included from primitives.sgml  -->
232 <!-- &primitives; -->
233 <sect1 id="primitives">
234   <title>Unboxed types and primitive operations</title>
235
236 <para>GHC is built on a raft of primitive data types and operations.
237 While you really can use this stuff to write fast code,
238   we generally find it a lot less painful, and more satisfying in the
239   long run, to use higher-level language features and libraries.  With
240   any luck, the code you write will be optimised to the efficient
241   unboxed version in any case.  And if it isn't, we'd like to know
242   about it.</para>
243
244 <para>We do not currently have good, up-to-date documentation about the
245 primitives, perhaps because they are mainly intended for internal use.
246 There used to be a long section about them here in the User Guide, but it
247 became out of date, and wrong information is worse than none.</para>
248
249 <para>The Real Truth about what primitive types there are, and what operations
250 work over those types, is held in the file
251 <filename>fptools/ghc/compiler/prelude/primops.txt</filename>.
252 This file is used directly to generate GHC's primitive-operation definitions, so
253 it is always correct!  It is also intended for processing into text.</para>
254
255 <para> Indeed,
256 the result of such processing is part of the description of the 
257  <ulink
258       url="http://haskell.cs.yale.edu/ghc/docs/papers/core.ps.gz">External
259          Core language</ulink>.
260 So that document is a good place to look for a type-set version.
261 We would be very happy if someone wanted to volunteer to produce an SGML
262 back end to the program that processes <filename>primops.txt</filename> so that
263 we could include the results here in the User Guide.</para>
264
265 <para>What follows here is a brief summary of some main points.</para>
266   
267 <sect2 id="glasgow-unboxed">
268 <title>Unboxed types
269 </title>
270
271 <para>
272 <indexterm><primary>Unboxed types (Glasgow extension)</primary></indexterm>
273 </para>
274
275 <para>Most types in GHC are <firstterm>boxed</firstterm>, which means
276 that values of that type are represented by a pointer to a heap
277 object.  The representation of a Haskell <literal>Int</literal>, for
278 example, is a two-word heap object.  An <firstterm>unboxed</firstterm>
279 type, however, is represented by the value itself, no pointers or heap
280 allocation are involved.
281 </para>
282
283 <para>
284 Unboxed types correspond to the &ldquo;raw machine&rdquo; types you
285 would use in C: <literal>Int&num;</literal> (long int),
286 <literal>Double&num;</literal> (double), <literal>Addr&num;</literal>
287 (void *), etc.  The <emphasis>primitive operations</emphasis>
288 (PrimOps) on these types are what you might expect; e.g.,
289 <literal>(+&num;)</literal> is addition on
290 <literal>Int&num;</literal>s, and is the machine-addition that we all
291 know and love&mdash;usually one instruction.
292 </para>
293
294 <para>
295 Primitive (unboxed) types cannot be defined in Haskell, and are
296 therefore built into the language and compiler.  Primitive types are
297 always unlifted; that is, a value of a primitive type cannot be
298 bottom.  We use the convention that primitive types, values, and
299 operations have a <literal>&num;</literal> suffix.
300 </para>
301
302 <para>
303 Primitive values are often represented by a simple bit-pattern, such
304 as <literal>Int&num;</literal>, <literal>Float&num;</literal>,
305 <literal>Double&num;</literal>.  But this is not necessarily the case:
306 a primitive value might be represented by a pointer to a
307 heap-allocated object.  Examples include
308 <literal>Array&num;</literal>, the type of primitive arrays.  A
309 primitive array is heap-allocated because it is too big a value to fit
310 in a register, and would be too expensive to copy around; in a sense,
311 it is accidental that it is represented by a pointer.  If a pointer
312 represents a primitive value, then it really does point to that value:
313 no unevaluated thunks, no indirections&hellip;nothing can be at the
314 other end of the pointer than the primitive value.
315 </para>
316
317 <para>
318 There are some restrictions on the use of primitive types, the main
319 one being that you can't pass a primitive value to a polymorphic
320 function or store one in a polymorphic data type.  This rules out
321 things like <literal>[Int&num;]</literal> (i.e. lists of primitive
322 integers).  The reason for this restriction is that polymorphic
323 arguments and constructor fields are assumed to be pointers: if an
324 unboxed integer is stored in one of these, the garbage collector would
325 attempt to follow it, leading to unpredictable space leaks.  Or a
326 <function>seq</function> operation on the polymorphic component may
327 attempt to dereference the pointer, with disastrous results.  Even
328 worse, the unboxed value might be larger than a pointer
329 (<literal>Double&num;</literal> for instance).
330 </para>
331
332 <para>
333 Nevertheless, A numerically-intensive program using unboxed types can
334 go a <emphasis>lot</emphasis> faster than its &ldquo;standard&rdquo;
335 counterpart&mdash;we saw a threefold speedup on one example.
336 </para>
337
338 </sect2>
339
340 <sect2 id="unboxed-tuples">
341 <title>Unboxed Tuples
342 </title>
343
344 <para>
345 Unboxed tuples aren't really exported by <literal>GHC.Exts</literal>,
346 they're available by default with <option>-fglasgow-exts</option>.  An
347 unboxed tuple looks like this:
348 </para>
349
350 <para>
351
352 <programlisting>
353 (# e_1, ..., e_n #)
354 </programlisting>
355
356 </para>
357
358 <para>
359 where <literal>e&lowbar;1..e&lowbar;n</literal> are expressions of any
360 type (primitive or non-primitive).  The type of an unboxed tuple looks
361 the same.
362 </para>
363
364 <para>
365 Unboxed tuples are used for functions that need to return multiple
366 values, but they avoid the heap allocation normally associated with
367 using fully-fledged tuples.  When an unboxed tuple is returned, the
368 components are put directly into registers or on the stack; the
369 unboxed tuple itself does not have a composite representation.  Many
370 of the primitive operations listed in this section return unboxed
371 tuples.
372 </para>
373
374 <para>
375 There are some pretty stringent restrictions on the use of unboxed tuples:
376 </para>
377
378 <para>
379
380 <itemizedlist>
381 <listitem>
382
383 <para>
384  Unboxed tuple types are subject to the same restrictions as
385 other unboxed types; i.e. they may not be stored in polymorphic data
386 structures or passed to polymorphic functions.
387
388 </para>
389 </listitem>
390 <listitem>
391
392 <para>
393  Unboxed tuples may only be constructed as the direct result of
394 a function, and may only be deconstructed with a <literal>case</literal> expression.
395 eg. the following are valid:
396
397
398 <programlisting>
399 f x y = (# x+1, y-1 #)
400 g x = case f x x of { (# a, b #) -&#62; a + b }
401 </programlisting>
402
403
404 but the following are invalid:
405
406
407 <programlisting>
408 f x y = g (# x, y #)
409 g (# x, y #) = x + y
410 </programlisting>
411
412
413 </para>
414 </listitem>
415 <listitem>
416
417 <para>
418  No variable can have an unboxed tuple type.  This is illegal:
419
420
421 <programlisting>
422 f :: (# Int, Int #) -&#62; (# Int, Int #)
423 f x = x
424 </programlisting>
425
426
427 because <literal>x</literal> has an unboxed tuple type.
428
429 </para>
430 </listitem>
431
432 </itemizedlist>
433
434 </para>
435
436 <para>
437 Note: we may relax some of these restrictions in the future.
438 </para>
439
440 <para>
441 The <literal>IO</literal> and <literal>ST</literal> monads use unboxed
442 tuples to avoid unnecessary allocation during sequences of operations.
443 </para>
444
445 </sect2>
446 </sect1>
447
448
449 <!-- ====================== SYNTACTIC EXTENSIONS =======================  -->
450
451 <sect1 id="syntax-extns">
452 <title>Syntactic extensions</title>
453  
454     <!-- ====================== HIERARCHICAL MODULES =======================  -->
455
456     <sect2 id="hierarchical-modules">
457       <title>Hierarchical Modules</title>
458
459       <para>GHC supports a small extension to the syntax of module
460       names: a module name is allowed to contain a dot
461       <literal>&lsquo;.&rsquo;</literal>.  This is also known as the
462       &ldquo;hierarchical module namespace&rdquo; extension, because
463       it extends the normally flat Haskell module namespace into a
464       more flexible hierarchy of modules.</para>
465
466       <para>This extension has very little impact on the language
467       itself; modules names are <emphasis>always</emphasis> fully
468       qualified, so you can just think of the fully qualified module
469       name as <quote>the module name</quote>.  In particular, this
470       means that the full module name must be given after the
471       <literal>module</literal> keyword at the beginning of the
472       module; for example, the module <literal>A.B.C</literal> must
473       begin</para>
474
475 <programlisting>module A.B.C</programlisting>
476
477
478       <para>It is a common strategy to use the <literal>as</literal>
479       keyword to save some typing when using qualified names with
480       hierarchical modules.  For example:</para>
481
482 <programlisting>
483 import qualified Control.Monad.ST.Strict as ST
484 </programlisting>
485
486       <para>For details on how GHC searches for source and interface
487       files in the presence of hierarchical modules, see <xref
488       linkend="search-path"/>.</para>
489
490       <para>GHC comes with a large collection of libraries arranged
491       hierarchically; see the accompanying library documentation.
492       There is an ongoing project to create and maintain a stable set
493       of <quote>core</quote> libraries used by several Haskell
494       compilers, and the libraries that GHC comes with represent the
495       current status of that project.  For more details, see <ulink
496       url="http://www.haskell.org/~simonmar/libraries/libraries.html">Haskell
497       Libraries</ulink>.</para>
498
499     </sect2>
500
501     <!-- ====================== PATTERN GUARDS =======================  -->
502
503 <sect2 id="pattern-guards">
504 <title>Pattern guards</title>
505
506 <para>
507 <indexterm><primary>Pattern guards (Glasgow extension)</primary></indexterm>
508 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.)
509 </para>
510
511 <para>
512 Suppose we have an abstract data type of finite maps, with a
513 lookup operation:
514
515 <programlisting>
516 lookup :: FiniteMap -> Int -> Maybe Int
517 </programlisting>
518
519 The lookup returns <function>Nothing</function> if the supplied key is not in the domain of the mapping, and <function>(Just v)</function> otherwise,
520 where <varname>v</varname> is the value that the key maps to.  Now consider the following definition:
521 </para>
522
523 <programlisting>
524 clunky env var1 var2 | ok1 &amp;&amp; ok2 = val1 + val2
525 | otherwise  = var1 + var2
526 where
527   m1 = lookup env var1
528   m2 = lookup env var2
529   ok1 = maybeToBool m1
530   ok2 = maybeToBool m2
531   val1 = expectJust m1
532   val2 = expectJust m2
533 </programlisting>
534
535 <para>
536 The auxiliary functions are 
537 </para>
538
539 <programlisting>
540 maybeToBool :: Maybe a -&gt; Bool
541 maybeToBool (Just x) = True
542 maybeToBool Nothing  = False
543
544 expectJust :: Maybe a -&gt; a
545 expectJust (Just x) = x
546 expectJust Nothing  = error "Unexpected Nothing"
547 </programlisting>
548
549 <para>
550 What is <function>clunky</function> doing? The guard <literal>ok1 &amp;&amp;
551 ok2</literal> checks that both lookups succeed, using
552 <function>maybeToBool</function> to convert the <function>Maybe</function>
553 types to booleans. The (lazily evaluated) <function>expectJust</function>
554 calls extract the values from the results of the lookups, and binds the
555 returned values to <varname>val1</varname> and <varname>val2</varname>
556 respectively.  If either lookup fails, then clunky takes the
557 <literal>otherwise</literal> case and returns the sum of its arguments.
558 </para>
559
560 <para>
561 This is certainly legal Haskell, but it is a tremendously verbose and
562 un-obvious way to achieve the desired effect.  Arguably, a more direct way
563 to write clunky would be to use case expressions:
564 </para>
565
566 <programlisting>
567 clunky env var1 var1 = case lookup env var1 of
568   Nothing -&gt; fail
569   Just val1 -&gt; case lookup env var2 of
570     Nothing -&gt; fail
571     Just val2 -&gt; val1 + val2
572 where
573   fail = val1 + val2
574 </programlisting>
575
576 <para>
577 This is a bit shorter, but hardly better.  Of course, we can rewrite any set
578 of pattern-matching, guarded equations as case expressions; that is
579 precisely what the compiler does when compiling equations! The reason that
580 Haskell provides guarded equations is because they allow us to write down
581 the cases we want to consider, one at a time, independently of each other. 
582 This structure is hidden in the case version.  Two of the right-hand sides
583 are really the same (<function>fail</function>), and the whole expression
584 tends to become more and more indented. 
585 </para>
586
587 <para>
588 Here is how I would write clunky:
589 </para>
590
591 <programlisting>
592 clunky env var1 var1
593   | Just val1 &lt;- lookup env var1
594   , Just val2 &lt;- lookup env var2
595   = val1 + val2
596 ...other equations for clunky...
597 </programlisting>
598
599 <para>
600 The semantics should be clear enough.  The qualifers are matched in order. 
601 For a <literal>&lt;-</literal> qualifier, which I call a pattern guard, the
602 right hand side is evaluated and matched against the pattern on the left. 
603 If the match fails then the whole guard fails and the next equation is
604 tried.  If it succeeds, then the appropriate binding takes place, and the
605 next qualifier is matched, in the augmented environment.  Unlike list
606 comprehensions, however, the type of the expression to the right of the
607 <literal>&lt;-</literal> is the same as the type of the pattern to its
608 left.  The bindings introduced by pattern guards scope over all the
609 remaining guard qualifiers, and over the right hand side of the equation.
610 </para>
611
612 <para>
613 Just as with list comprehensions, boolean expressions can be freely mixed
614 with among the pattern guards.  For example:
615 </para>
616
617 <programlisting>
618 f x | [y] &lt;- x
619     , y > 3
620     , Just z &lt;- h y
621     = ...
622 </programlisting>
623
624 <para>
625 Haskell's current guards therefore emerge as a special case, in which the
626 qualifier list has just one element, a boolean expression.
627 </para>
628 </sect2>
629
630     <!-- ===================== Recursive do-notation ===================  -->
631
632 <sect2 id="mdo-notation">
633 <title>The recursive do-notation
634 </title>
635
636 <para> The recursive do-notation (also known as mdo-notation) is implemented as described in
637 "A recursive do for Haskell",
638 Levent Erkok, John Launchbury",
639 Haskell Workshop 2002, pages: 29-37. Pittsburgh, Pennsylvania. 
640 </para>
641 <para>
642 The do-notation of Haskell does not allow <emphasis>recursive bindings</emphasis>,
643 that is, the variables bound in a do-expression are visible only in the textually following 
644 code block. Compare this to a let-expression, where bound variables are visible in the entire binding
645 group. It turns out that several applications can benefit from recursive bindings in
646 the do-notation, and this extension provides the necessary syntactic support.
647 </para>
648 <para>
649 Here is a simple (yet contrived) example:
650 </para>
651 <programlisting>
652 import Control.Monad.Fix
653
654 justOnes = mdo xs &lt;- Just (1:xs)
655                return xs
656 </programlisting>
657 <para>
658 As you can guess <literal>justOnes</literal> will evaluate to <literal>Just [1,1,1,...</literal>.
659 </para>
660
661 <para>
662 The Control.Monad.Fix library introduces the <literal>MonadFix</literal> class. It's definition is:
663 </para>
664 <programlisting>
665 class Monad m => MonadFix m where
666    mfix :: (a -> m a) -> m a
667 </programlisting>
668 <para>
669 The function <literal>mfix</literal>
670 dictates how the required recursion operation should be performed. If recursive bindings are required for a monad,
671 then that monad must be declared an instance of the <literal>MonadFix</literal> class.
672 For details, see the above mentioned reference.
673 </para>
674 <para>
675 The following instances of <literal>MonadFix</literal> are automatically provided: List, Maybe, IO. 
676 Furthermore, the Control.Monad.ST and Control.Monad.ST.Lazy modules provide the instances of the MonadFix class 
677 for Haskell's internal state monad (strict and lazy, respectively).
678 </para>
679 <para>
680 There are three important points in using the recursive-do notation:
681 <itemizedlist>
682 <listitem><para>
683 The recursive version of the do-notation uses the keyword <literal>mdo</literal> (rather
684 than <literal>do</literal>).
685 </para></listitem>
686
687 <listitem><para>
688 You should <literal>import Control.Monad.Fix</literal>.
689 (Note: Strictly speaking, this import is required only when you need to refer to the name
690 <literal>MonadFix</literal> in your program, but the import is always safe, and the programmers
691 are encouraged to always import this module when using the mdo-notation.)
692 </para></listitem>
693
694 <listitem><para>
695 As with other extensions, ghc should be given the flag <literal>-fglasgow-exts</literal>
696 </para></listitem>
697 </itemizedlist>
698 </para>
699
700 <para>
701 The web page: <ulink url="http://www.cse.ogi.edu/PacSoft/projects/rmb">http://www.cse.ogi.edu/PacSoft/projects/rmb</ulink>
702 contains up to date information on recursive monadic bindings.
703 </para>
704
705 <para>
706 Historical note: The old implementation of the mdo-notation (and most
707 of the existing documents) used the name
708 <literal>MonadRec</literal> for the class and the corresponding library.
709 This name is not supported by GHC.
710 </para>
711
712 </sect2>
713
714
715    <!-- ===================== PARALLEL LIST COMPREHENSIONS ===================  -->
716
717   <sect2 id="parallel-list-comprehensions">
718     <title>Parallel List Comprehensions</title>
719     <indexterm><primary>list comprehensions</primary><secondary>parallel</secondary>
720     </indexterm>
721     <indexterm><primary>parallel list comprehensions</primary>
722     </indexterm>
723
724     <para>Parallel list comprehensions are a natural extension to list
725     comprehensions.  List comprehensions can be thought of as a nice
726     syntax for writing maps and filters.  Parallel comprehensions
727     extend this to include the zipWith family.</para>
728
729     <para>A parallel list comprehension has multiple independent
730     branches of qualifier lists, each separated by a `|' symbol.  For
731     example, the following zips together two lists:</para>
732
733 <programlisting>
734    [ (x, y) | x &lt;- xs | y &lt;- ys ] 
735 </programlisting>
736
737     <para>The behavior of parallel list comprehensions follows that of
738     zip, in that the resulting list will have the same length as the
739     shortest branch.</para>
740
741     <para>We can define parallel list comprehensions by translation to
742     regular comprehensions.  Here's the basic idea:</para>
743
744     <para>Given a parallel comprehension of the form: </para>
745
746 <programlisting>
747    [ e | p1 &lt;- e11, p2 &lt;- e12, ... 
748        | q1 &lt;- e21, q2 &lt;- e22, ... 
749        ... 
750    ] 
751 </programlisting>
752
753     <para>This will be translated to: </para>
754
755 <programlisting>
756    [ e | ((p1,p2), (q1,q2), ...) &lt;- zipN [(p1,p2) | p1 &lt;- e11, p2 &lt;- e12, ...] 
757                                          [(q1,q2) | q1 &lt;- e21, q2 &lt;- e22, ...] 
758                                          ... 
759    ] 
760 </programlisting>
761
762     <para>where `zipN' is the appropriate zip for the given number of
763     branches.</para>
764
765   </sect2>
766
767 <sect2 id="rebindable-syntax">
768 <title>Rebindable syntax</title>
769
770
771       <para>GHC allows most kinds of built-in syntax to be rebound by
772       the user, to facilitate replacing the <literal>Prelude</literal>
773       with a home-grown version, for example.</para>
774
775             <para>You may want to define your own numeric class
776             hierarchy.  It completely defeats that purpose if the
777             literal "1" means "<literal>Prelude.fromInteger
778             1</literal>", which is what the Haskell Report specifies.
779             So the <option>-fno-implicit-prelude</option> flag causes
780             the following pieces of built-in syntax to refer to
781             <emphasis>whatever is in scope</emphasis>, not the Prelude
782             versions:</para>
783
784             <itemizedlist>
785               <listitem>
786                 <para>Integer and fractional literals mean
787                 "<literal>fromInteger 1</literal>" and
788                 "<literal>fromRational 3.2</literal>", not the
789                 Prelude-qualified versions; both in expressions and in
790                 patterns. </para>
791                 <para>However, the standard Prelude <literal>Eq</literal> class
792                 is still used for the equality test necessary for literal patterns.</para>
793               </listitem>
794
795               <listitem>
796                 <para>Negation (e.g. "<literal>- (f x)</literal>")
797                 means "<literal>negate (f x)</literal>" (not
798                 <literal>Prelude.negate</literal>).</para>
799               </listitem>
800
801               <listitem>
802                 <para>In an n+k pattern, the standard Prelude
803                 <literal>Ord</literal> class is still used for comparison,
804                 but the necessary subtraction uses whatever
805                 "<literal>(-)</literal>" is in scope (not
806                 "<literal>Prelude.(-)</literal>").</para>
807               </listitem>
808
809               <listitem>
810           <para>"Do" notation is translated using whatever
811               functions <literal>(>>=)</literal>,
812               <literal>(>>)</literal>, <literal>fail</literal>, and
813               <literal>return</literal>, are in scope (not the Prelude
814               versions).  List comprehensions, and parallel array
815               comprehensions, are unaffected.  </para></listitem>
816             </itemizedlist>
817
818              <para>Be warned: this is an experimental facility, with fewer checks than
819              usual.  In particular, it is essential that the functions GHC finds in scope
820              must have the appropriate types, namely:
821              <screen>
822                 fromInteger  :: forall a. (...) => Integer  -> a
823                 fromRational :: forall a. (...) => Rational -> a
824                 negate       :: forall a. (...) => a -> a
825                 (-)          :: forall a. (...) => a -> a -> a
826                 (>>=)        :: forall m a. (...) => m a -> (a -> m b) -> m b
827                 (>>)         :: forall m a. (...) => m a -> m b -> m b
828                 return       :: forall m a. (...) => a      -> m a
829                 fail         :: forall m a. (...) => String -> m a
830              </screen>
831              (The (...) part can be any context including the empty context; that part 
832              is up to you.)
833              If the functions don't have the right type, very peculiar things may 
834              happen.  Use <literal>-dcore-lint</literal> to
835              typecheck the desugared program.  If Core Lint is happy you should be all right.</para>
836
837 </sect2>
838 </sect1>
839
840
841 <!-- TYPE SYSTEM EXTENSIONS -->
842 <sect1 id="type-extensions">
843 <title>Type system extensions</title>
844
845
846 <sect2>
847 <title>Data types and type synonyms</title>
848
849 <sect3 id="nullary-types">
850 <title>Data types with no constructors</title>
851
852 <para>With the <option>-fglasgow-exts</option> flag, GHC lets you declare
853 a data type with no constructors.  For example:</para>
854
855 <programlisting>
856   data S      -- S :: *
857   data T a    -- T :: * -> *
858 </programlisting>
859
860 <para>Syntactically, the declaration lacks the "= constrs" part.  The 
861 type can be parameterised over types of any kind, but if the kind is
862 not <literal>*</literal> then an explicit kind annotation must be used
863 (see <xref linkend="sec-kinding"/>).</para>
864
865 <para>Such data types have only one value, namely bottom.
866 Nevertheless, they can be useful when defining "phantom types".</para>
867 </sect3>
868
869 <sect3 id="infix-tycons">
870 <title>Infix type constructors</title>
871
872 <para>
873 GHC allows type constructors to be operators, and to be written infix, very much 
874 like expressions.  More specifically:
875 <itemizedlist>
876 <listitem><para>
877   A type constructor can be an operator, beginning with a colon; e.g. <literal>:*:</literal>.
878   The lexical syntax is the same as that for data constructors.
879   </para></listitem>
880 <listitem><para>
881   Types can be written infix.  For example <literal>Int :*: Bool</literal>.  
882   </para></listitem>
883 <listitem><para>
884   Back-quotes work
885   as for expressions, both for type constructors and type variables;  e.g. <literal>Int `Either` Bool</literal>, or
886   <literal>Int `a` Bool</literal>.  Similarly, parentheses work the same; e.g.  <literal>(:*:) Int Bool</literal>.
887   </para></listitem>
888 <listitem><para>
889   Fixities may be declared for type constructors just as for data constructors.  However,
890   one cannot distinguish between the two in a fixity declaration; a fixity declaration
891   sets the fixity for a data constructor and the corresponding type constructor.  For example:
892 <screen>
893   infixl 7 T, :*:
894 </screen>
895   sets the fixity for both type constructor <literal>T</literal> and data constructor <literal>T</literal>,
896   and similarly for <literal>:*:</literal>.
897   <literal>Int `a` Bool</literal>.
898   </para></listitem>
899 <listitem><para>
900   Function arrow is <literal>infixr</literal> with fixity 0.  (This might change; I'm not sure what it should be.)
901   </para></listitem>
902 <listitem><para>
903   Data type and type-synonym declarations can be written infix.  E.g.
904 <screen>
905   data a :*: b = Foo a b
906   type a :+: b = Either a b
907 </screen>
908   </para></listitem>
909 <listitem><para>
910   The only thing that differs between operators in types and operators in expressions is that
911   ordinary non-constructor operators, such as <literal>+</literal> and <literal>*</literal>
912   are not allowed in types. Reason: the uniform thing to do would be to make them type
913   variables, but that's not very useful.  A less uniform but more useful thing would be to
914   allow them to be type <emphasis>constructors</emphasis>.  But that gives trouble in export
915   lists.  So for now we just exclude them.
916   </para></listitem>
917
918 </itemizedlist>
919 </para>
920 </sect3>
921
922 <sect3 id="type-synonyms">
923 <title>Liberalised type synonyms</title>
924
925 <para>
926 Type synonmys are like macros at the type level, and
927 GHC does validity checking on types <emphasis>only after expanding type synonyms</emphasis>.
928 That means that GHC can be very much more liberal about type synonyms than Haskell 98:
929 <itemizedlist>
930 <listitem> <para>You can write a <literal>forall</literal> (including overloading)
931 in a type synonym, thus:
932 <programlisting>
933   type Discard a = forall b. Show b => a -> b -> (a, String)
934
935   f :: Discard a
936   f x y = (x, show y)
937
938   g :: Discard Int -> (Int,Bool)    -- A rank-2 type
939   g f = f Int True
940 </programlisting>
941 </para>
942 </listitem>
943
944 <listitem><para>
945 You can write an unboxed tuple in a type synonym:
946 <programlisting>
947   type Pr = (# Int, Int #)
948
949   h :: Int -> Pr
950   h x = (# x, x #)
951 </programlisting>
952 </para></listitem>
953
954 <listitem><para>
955 You can apply a type synonym to a forall type:
956 <programlisting>
957   type Foo a = a -> a -> Bool
958  
959   f :: Foo (forall b. b->b)
960 </programlisting>
961 After expanding the synonym, <literal>f</literal> has the legal (in GHC) type:
962 <programlisting>
963   f :: (forall b. b->b) -> (forall b. b->b) -> Bool
964 </programlisting>
965 </para></listitem>
966
967 <listitem><para>
968 You can apply a type synonym to a partially applied type synonym:
969 <programlisting>
970   type Generic i o = forall x. i x -> o x
971   type Id x = x
972   
973   foo :: Generic Id []
974 </programlisting>
975 After epxanding the synonym, <literal>foo</literal> has the legal (in GHC) type:
976 <programlisting>
977   foo :: forall x. x -> [x]
978 </programlisting>
979 </para></listitem>
980
981 </itemizedlist>
982 </para>
983
984 <para>
985 GHC currently does kind checking before expanding synonyms (though even that
986 could be changed.)
987 </para>
988 <para>
989 After expanding type synonyms, GHC does validity checking on types, looking for
990 the following mal-formedness which isn't detected simply by kind checking:
991 <itemizedlist>
992 <listitem><para>
993 Type constructor applied to a type involving for-alls.
994 </para></listitem>
995 <listitem><para>
996 Unboxed tuple on left of an arrow.
997 </para></listitem>
998 <listitem><para>
999 Partially-applied type synonym.
1000 </para></listitem>
1001 </itemizedlist>
1002 So, for example,
1003 this will be rejected:
1004 <programlisting>
1005   type Pr = (# Int, Int #)
1006
1007   h :: Pr -> Int
1008   h x = ...
1009 </programlisting>
1010 because GHC does not allow  unboxed tuples on the left of a function arrow.
1011 </para>
1012 </sect3>
1013
1014
1015 <sect3 id="existential-quantification">
1016 <title>Existentially quantified data constructors
1017 </title>
1018
1019 <para>
1020 The idea of using existential quantification in data type declarations
1021 was suggested by Laufer (I believe, thought doubtless someone will
1022 correct me), and implemented in Hope+. It's been in Lennart
1023 Augustsson's <command>hbc</command> Haskell compiler for several years, and
1024 proved very useful.  Here's the idea.  Consider the declaration:
1025 </para>
1026
1027 <para>
1028
1029 <programlisting>
1030   data Foo = forall a. MkFoo a (a -> Bool)
1031            | Nil
1032 </programlisting>
1033
1034 </para>
1035
1036 <para>
1037 The data type <literal>Foo</literal> has two constructors with types:
1038 </para>
1039
1040 <para>
1041
1042 <programlisting>
1043   MkFoo :: forall a. a -> (a -> Bool) -> Foo
1044   Nil   :: Foo
1045 </programlisting>
1046
1047 </para>
1048
1049 <para>
1050 Notice that the type variable <literal>a</literal> in the type of <function>MkFoo</function>
1051 does not appear in the data type itself, which is plain <literal>Foo</literal>.
1052 For example, the following expression is fine:
1053 </para>
1054
1055 <para>
1056
1057 <programlisting>
1058   [MkFoo 3 even, MkFoo 'c' isUpper] :: [Foo]
1059 </programlisting>
1060
1061 </para>
1062
1063 <para>
1064 Here, <literal>(MkFoo 3 even)</literal> packages an integer with a function
1065 <function>even</function> that maps an integer to <literal>Bool</literal>; and <function>MkFoo 'c'
1066 isUpper</function> packages a character with a compatible function.  These
1067 two things are each of type <literal>Foo</literal> and can be put in a list.
1068 </para>
1069
1070 <para>
1071 What can we do with a value of type <literal>Foo</literal>?.  In particular,
1072 what happens when we pattern-match on <function>MkFoo</function>?
1073 </para>
1074
1075 <para>
1076
1077 <programlisting>
1078   f (MkFoo val fn) = ???
1079 </programlisting>
1080
1081 </para>
1082
1083 <para>
1084 Since all we know about <literal>val</literal> and <function>fn</function> is that they
1085 are compatible, the only (useful) thing we can do with them is to
1086 apply <function>fn</function> to <literal>val</literal> to get a boolean.  For example:
1087 </para>
1088
1089 <para>
1090
1091 <programlisting>
1092   f :: Foo -> Bool
1093   f (MkFoo val fn) = fn val
1094 </programlisting>
1095
1096 </para>
1097
1098 <para>
1099 What this allows us to do is to package heterogenous values
1100 together with a bunch of functions that manipulate them, and then treat
1101 that collection of packages in a uniform manner.  You can express
1102 quite a bit of object-oriented-like programming this way.
1103 </para>
1104
1105 <sect4 id="existential">
1106 <title>Why existential?
1107 </title>
1108
1109 <para>
1110 What has this to do with <emphasis>existential</emphasis> quantification?
1111 Simply that <function>MkFoo</function> has the (nearly) isomorphic type
1112 </para>
1113
1114 <para>
1115
1116 <programlisting>
1117   MkFoo :: (exists a . (a, a -> Bool)) -> Foo
1118 </programlisting>
1119
1120 </para>
1121
1122 <para>
1123 But Haskell programmers can safely think of the ordinary
1124 <emphasis>universally</emphasis> quantified type given above, thereby avoiding
1125 adding a new existential quantification construct.
1126 </para>
1127
1128 </sect4>
1129
1130 <sect4>
1131 <title>Type classes</title>
1132
1133 <para>
1134 An easy extension (implemented in <command>hbc</command>) is to allow
1135 arbitrary contexts before the constructor.  For example:
1136 </para>
1137
1138 <para>
1139
1140 <programlisting>
1141 data Baz = forall a. Eq a => Baz1 a a
1142          | forall b. Show b => Baz2 b (b -> b)
1143 </programlisting>
1144
1145 </para>
1146
1147 <para>
1148 The two constructors have the types you'd expect:
1149 </para>
1150
1151 <para>
1152
1153 <programlisting>
1154 Baz1 :: forall a. Eq a => a -> a -> Baz
1155 Baz2 :: forall b. Show b => b -> (b -> b) -> Baz
1156 </programlisting>
1157
1158 </para>
1159
1160 <para>
1161 But when pattern matching on <function>Baz1</function> the matched values can be compared
1162 for equality, and when pattern matching on <function>Baz2</function> the first matched
1163 value can be converted to a string (as well as applying the function to it).
1164 So this program is legal:
1165 </para>
1166
1167 <para>
1168
1169 <programlisting>
1170   f :: Baz -> String
1171   f (Baz1 p q) | p == q    = "Yes"
1172                | otherwise = "No"
1173   f (Baz2 v fn)            = show (fn v)
1174 </programlisting>
1175
1176 </para>
1177
1178 <para>
1179 Operationally, in a dictionary-passing implementation, the
1180 constructors <function>Baz1</function> and <function>Baz2</function> must store the
1181 dictionaries for <literal>Eq</literal> and <literal>Show</literal> respectively, and
1182 extract it on pattern matching.
1183 </para>
1184
1185 <para>
1186 Notice the way that the syntax fits smoothly with that used for
1187 universal quantification earlier.
1188 </para>
1189
1190 </sect4>
1191
1192 <sect4>
1193 <title>Restrictions</title>
1194
1195 <para>
1196 There are several restrictions on the ways in which existentially-quantified
1197 constructors can be use.
1198 </para>
1199
1200 <para>
1201
1202 <itemizedlist>
1203 <listitem>
1204
1205 <para>
1206  When pattern matching, each pattern match introduces a new,
1207 distinct, type for each existential type variable.  These types cannot
1208 be unified with any other type, nor can they escape from the scope of
1209 the pattern match.  For example, these fragments are incorrect:
1210
1211
1212 <programlisting>
1213 f1 (MkFoo a f) = a
1214 </programlisting>
1215
1216
1217 Here, the type bound by <function>MkFoo</function> "escapes", because <literal>a</literal>
1218 is the result of <function>f1</function>.  One way to see why this is wrong is to
1219 ask what type <function>f1</function> has:
1220
1221
1222 <programlisting>
1223   f1 :: Foo -> a             -- Weird!
1224 </programlisting>
1225
1226
1227 What is this "<literal>a</literal>" in the result type? Clearly we don't mean
1228 this:
1229
1230
1231 <programlisting>
1232   f1 :: forall a. Foo -> a   -- Wrong!
1233 </programlisting>
1234
1235
1236 The original program is just plain wrong.  Here's another sort of error
1237
1238
1239 <programlisting>
1240   f2 (Baz1 a b) (Baz1 p q) = a==q
1241 </programlisting>
1242
1243
1244 It's ok to say <literal>a==b</literal> or <literal>p==q</literal>, but
1245 <literal>a==q</literal> is wrong because it equates the two distinct types arising
1246 from the two <function>Baz1</function> constructors.
1247
1248
1249 </para>
1250 </listitem>
1251 <listitem>
1252
1253 <para>
1254 You can't pattern-match on an existentially quantified
1255 constructor in a <literal>let</literal> or <literal>where</literal> group of
1256 bindings. So this is illegal:
1257
1258
1259 <programlisting>
1260   f3 x = a==b where { Baz1 a b = x }
1261 </programlisting>
1262
1263 Instead, use a <literal>case</literal> expression:
1264
1265 <programlisting>
1266   f3 x = case x of Baz1 a b -> a==b
1267 </programlisting>
1268
1269 In general, you can only pattern-match
1270 on an existentially-quantified constructor in a <literal>case</literal> expression or
1271 in the patterns of a function definition.
1272
1273 The reason for this restriction is really an implementation one.
1274 Type-checking binding groups is already a nightmare without
1275 existentials complicating the picture.  Also an existential pattern
1276 binding at the top level of a module doesn't make sense, because it's
1277 not clear how to prevent the existentially-quantified type "escaping".
1278 So for now, there's a simple-to-state restriction.  We'll see how
1279 annoying it is.
1280
1281 </para>
1282 </listitem>
1283 <listitem>
1284
1285 <para>
1286 You can't use existential quantification for <literal>newtype</literal>
1287 declarations.  So this is illegal:
1288
1289
1290 <programlisting>
1291   newtype T = forall a. Ord a => MkT a
1292 </programlisting>
1293
1294
1295 Reason: a value of type <literal>T</literal> must be represented as a
1296 pair of a dictionary for <literal>Ord t</literal> and a value of type
1297 <literal>t</literal>.  That contradicts the idea that
1298 <literal>newtype</literal> should have no concrete representation.
1299 You can get just the same efficiency and effect by using
1300 <literal>data</literal> instead of <literal>newtype</literal>.  If
1301 there is no overloading involved, then there is more of a case for
1302 allowing an existentially-quantified <literal>newtype</literal>,
1303 because the <literal>data</literal> version does carry an
1304 implementation cost, but single-field existentially quantified
1305 constructors aren't much use.  So the simple restriction (no
1306 existential stuff on <literal>newtype</literal>) stands, unless there
1307 are convincing reasons to change it.
1308
1309
1310 </para>
1311 </listitem>
1312 <listitem>
1313
1314 <para>
1315  You can't use <literal>deriving</literal> to define instances of a
1316 data type with existentially quantified data constructors.
1317
1318 Reason: in most cases it would not make sense. For example:&num;
1319
1320 <programlisting>
1321 data T = forall a. MkT [a] deriving( Eq )
1322 </programlisting>
1323
1324 To derive <literal>Eq</literal> in the standard way we would need to have equality
1325 between the single component of two <function>MkT</function> constructors:
1326
1327 <programlisting>
1328 instance Eq T where
1329   (MkT a) == (MkT b) = ???
1330 </programlisting>
1331
1332 But <varname>a</varname> and <varname>b</varname> have distinct types, and so can't be compared.
1333 It's just about possible to imagine examples in which the derived instance
1334 would make sense, but it seems altogether simpler simply to prohibit such
1335 declarations.  Define your own instances!
1336 </para>
1337 </listitem>
1338
1339 </itemizedlist>
1340
1341 </para>
1342
1343 </sect4>
1344 </sect3>
1345
1346 </sect2>
1347
1348
1349
1350 <sect2 id="multi-param-type-classes">
1351 <title>Class declarations</title>
1352
1353 <para>
1354 This section documents GHC's implementation of multi-parameter type
1355 classes.  There's lots of background in the paper <ulink
1356 url="http://research.microsoft.com/~simonpj/multi.ps.gz" >Type
1357 classes: exploring the design space</ulink > (Simon Peyton Jones, Mark
1358 Jones, Erik Meijer).
1359 </para>
1360 <para>
1361 There are the following constraints on class declarations:
1362 <orderedlist>
1363 <listitem>
1364
1365 <para>
1366  <emphasis>Multi-parameter type classes are permitted</emphasis>. For example:
1367
1368
1369 <programlisting>
1370   class Collection c a where
1371     union :: c a -> c a -> c a
1372     ...etc.
1373 </programlisting>
1374
1375
1376
1377 </para>
1378 </listitem>
1379 <listitem>
1380
1381 <para>
1382  <emphasis>The class hierarchy must be acyclic</emphasis>.  However, the definition
1383 of "acyclic" involves only the superclass relationships.  For example,
1384 this is OK:
1385
1386
1387 <programlisting>
1388   class C a where {
1389     op :: D b => a -> b -> b
1390   }
1391
1392   class C a => D a where { ... }
1393 </programlisting>
1394
1395
1396 Here, <literal>C</literal> is a superclass of <literal>D</literal>, but it's OK for a
1397 class operation <literal>op</literal> of <literal>C</literal> to mention <literal>D</literal>.  (It
1398 would not be OK for <literal>D</literal> to be a superclass of <literal>C</literal>.)
1399
1400 </para>
1401 </listitem>
1402 <listitem>
1403
1404 <para>
1405  <emphasis>There are no restrictions on the context in a class declaration
1406 (which introduces superclasses), except that the class hierarchy must
1407 be acyclic</emphasis>.  So these class declarations are OK:
1408
1409
1410 <programlisting>
1411   class Functor (m k) => FiniteMap m k where
1412     ...
1413
1414   class (Monad m, Monad (t m)) => Transform t m where
1415     lift :: m a -> (t m) a
1416 </programlisting>
1417
1418
1419 </para>
1420 </listitem>
1421
1422 <listitem>
1423
1424 <para>
1425  <emphasis>All of the class type variables must be reachable (in the sense 
1426 mentioned in <xref linkend="type-restrictions"/>)
1427 from the free varibles of each method type
1428 </emphasis>.  For example:
1429
1430
1431 <programlisting>
1432   class Coll s a where
1433     empty  :: s
1434     insert :: s -> a -> s
1435 </programlisting>
1436
1437
1438 is not OK, because the type of <literal>empty</literal> doesn't mention
1439 <literal>a</literal>.  This rule is a consequence of Rule 1(a), above, for
1440 types, and has the same motivation.
1441
1442 Sometimes, offending class declarations exhibit misunderstandings.  For
1443 example, <literal>Coll</literal> might be rewritten
1444
1445
1446 <programlisting>
1447   class Coll s a where
1448     empty  :: s a
1449     insert :: s a -> a -> s a
1450 </programlisting>
1451
1452
1453 which makes the connection between the type of a collection of
1454 <literal>a</literal>'s (namely <literal>(s a)</literal>) and the element type <literal>a</literal>.
1455 Occasionally this really doesn't work, in which case you can split the
1456 class like this:
1457
1458
1459 <programlisting>
1460   class CollE s where
1461     empty  :: s
1462
1463   class CollE s => Coll s a where
1464     insert :: s -> a -> s
1465 </programlisting>
1466
1467
1468 </para>
1469 </listitem>
1470
1471 </orderedlist>
1472 </para>
1473
1474 <sect3 id="class-method-types">
1475 <title>Class method types</title>
1476 <para>
1477 Haskell 98 prohibits class method types to mention constraints on the
1478 class type variable, thus:
1479 <programlisting>
1480   class Seq s a where
1481     fromList :: [a] -> s a
1482     elem     :: Eq a => a -> s a -> Bool
1483 </programlisting>
1484 The type of <literal>elem</literal> is illegal in Haskell 98, because it
1485 contains the constraint <literal>Eq a</literal>, constrains only the 
1486 class type variable (in this case <literal>a</literal>).
1487 </para>
1488 <para>
1489 With the <option>-fglasgow-exts</option> GHC lifts this restriction.
1490 </para>
1491
1492 </sect3>
1493
1494 </sect2>
1495
1496 <sect2 id="type-restrictions">
1497 <title>Type signatures</title>
1498
1499 <sect3><title>The context of a type signature</title>
1500 <para>
1501 Unlike Haskell 98, constraints in types do <emphasis>not</emphasis> have to be of
1502 the form <emphasis>(class type-variable)</emphasis> or
1503 <emphasis>(class (type-variable type-variable ...))</emphasis>.  Thus,
1504 these type signatures are perfectly OK
1505 <programlisting>
1506   g :: Eq [a] => ...
1507   g :: Ord (T a ()) => ...
1508 </programlisting>
1509 </para>
1510 <para>
1511 GHC imposes the following restrictions on the constraints in a type signature.
1512 Consider the type:
1513
1514 <programlisting>
1515   forall tv1..tvn (c1, ...,cn) => type
1516 </programlisting>
1517
1518 (Here, we write the "foralls" explicitly, although the Haskell source
1519 language omits them; in Haskell 98, all the free type variables of an
1520 explicit source-language type signature are universally quantified,
1521 except for the class type variables in a class declaration.  However,
1522 in GHC, you can give the foralls if you want.  See <xref linkend="universal-quantification"/>).
1523 </para>
1524
1525 <para>
1526
1527 <orderedlist>
1528 <listitem>
1529
1530 <para>
1531  <emphasis>Each universally quantified type variable
1532 <literal>tvi</literal> must be reachable from <literal>type</literal></emphasis>.
1533
1534 A type variable <literal>a</literal> is "reachable" if it it appears
1535 in the same constraint as either a type variable free in in
1536 <literal>type</literal>, or another reachable type variable.  
1537 A value with a type that does not obey 
1538 this reachability restriction cannot be used without introducing
1539 ambiguity; that is why the type is rejected.
1540 Here, for example, is an illegal type:
1541
1542
1543 <programlisting>
1544   forall a. Eq a => Int
1545 </programlisting>
1546
1547
1548 When a value with this type was used, the constraint <literal>Eq tv</literal>
1549 would be introduced where <literal>tv</literal> is a fresh type variable, and
1550 (in the dictionary-translation implementation) the value would be
1551 applied to a dictionary for <literal>Eq tv</literal>.  The difficulty is that we
1552 can never know which instance of <literal>Eq</literal> to use because we never
1553 get any more information about <literal>tv</literal>.
1554 </para>
1555 <para>
1556 Note
1557 that the reachability condition is weaker than saying that <literal>a</literal> is
1558 functionally dependendent on a type variable free in
1559 <literal>type</literal> (see <xref
1560 linkend="functional-dependencies"/>).  The reason for this is there
1561 might be a "hidden" dependency, in a superclass perhaps.  So
1562 "reachable" is a conservative approximation to "functionally dependent".
1563 For example, consider:
1564 <programlisting>
1565   class C a b | a -> b where ...
1566   class C a b => D a b where ...
1567   f :: forall a b. D a b => a -> a
1568 </programlisting>
1569 This is fine, because in fact <literal>a</literal> does functionally determine <literal>b</literal>
1570 but that is not immediately apparent from <literal>f</literal>'s type.
1571 </para>
1572 </listitem>
1573 <listitem>
1574
1575 <para>
1576  <emphasis>Every constraint <literal>ci</literal> must mention at least one of the
1577 universally quantified type variables <literal>tvi</literal></emphasis>.
1578
1579 For example, this type is OK because <literal>C a b</literal> mentions the
1580 universally quantified type variable <literal>b</literal>:
1581
1582
1583 <programlisting>
1584   forall a. C a b => burble
1585 </programlisting>
1586
1587
1588 The next type is illegal because the constraint <literal>Eq b</literal> does not
1589 mention <literal>a</literal>:
1590
1591
1592 <programlisting>
1593   forall a. Eq b => burble
1594 </programlisting>
1595
1596
1597 The reason for this restriction is milder than the other one.  The
1598 excluded types are never useful or necessary (because the offending
1599 context doesn't need to be witnessed at this point; it can be floated
1600 out).  Furthermore, floating them out increases sharing. Lastly,
1601 excluding them is a conservative choice; it leaves a patch of
1602 territory free in case we need it later.
1603
1604 </para>
1605 </listitem>
1606
1607 </orderedlist>
1608
1609 </para>
1610 </sect3>
1611
1612 <sect3 id="hoist">
1613 <title>For-all hoisting</title>
1614 <para>
1615 It is often convenient to use generalised type synonyms (see <xref linkend="type-synonyms"/>) at the right hand
1616 end of an arrow, thus:
1617 <programlisting>
1618   type Discard a = forall b. a -> b -> a
1619
1620   g :: Int -> Discard Int
1621   g x y z = x+y
1622 </programlisting>
1623 Simply expanding the type synonym would give
1624 <programlisting>
1625   g :: Int -> (forall b. Int -> b -> Int)
1626 </programlisting>
1627 but GHC "hoists" the <literal>forall</literal> to give the isomorphic type
1628 <programlisting>
1629   g :: forall b. Int -> Int -> b -> Int
1630 </programlisting>
1631 In general, the rule is this: <emphasis>to determine the type specified by any explicit
1632 user-written type (e.g. in a type signature), GHC expands type synonyms and then repeatedly
1633 performs the transformation:</emphasis>
1634 <programlisting>
1635   <emphasis>type1</emphasis> -> forall a1..an. <emphasis>context2</emphasis> => <emphasis>type2</emphasis>
1636 ==>
1637   forall a1..an. <emphasis>context2</emphasis> => <emphasis>type1</emphasis> -> <emphasis>type2</emphasis>
1638 </programlisting>
1639 (In fact, GHC tries to retain as much synonym information as possible for use in
1640 error messages, but that is a usability issue.)  This rule applies, of course, whether
1641 or not the <literal>forall</literal> comes from a synonym. For example, here is another
1642 valid way to write <literal>g</literal>'s type signature:
1643 <programlisting>
1644   g :: Int -> Int -> forall b. b -> Int
1645 </programlisting>
1646 </para>
1647 <para>
1648 When doing this hoisting operation, GHC eliminates duplicate constraints.  For
1649 example:
1650 <programlisting>
1651   type Foo a = (?x::Int) => Bool -> a
1652   g :: Foo (Foo Int)
1653 </programlisting>
1654 means
1655 <programlisting>
1656   g :: (?x::Int) => Bool -> Bool -> Int
1657 </programlisting>
1658 </para>
1659 </sect3>
1660
1661
1662 </sect2>
1663
1664 <sect2 id="instance-decls">
1665 <title>Instance declarations</title>
1666
1667 <sect3>
1668 <title>Overlapping instances</title>
1669 <para>
1670 In general, <emphasis>instance declarations may not overlap</emphasis>.  The two instance
1671 declarations
1672
1673
1674 <programlisting>
1675   instance context1 => C type1 where ...
1676   instance context2 => C type2 where ...
1677 </programlisting>
1678
1679 "overlap" if <literal>type1</literal> and <literal>type2</literal> unify.
1680 </para>
1681 <para>
1682 However, if you give the command line option
1683 <option>-fallow-overlapping-instances</option><indexterm><primary>-fallow-overlapping-instances
1684 option</primary></indexterm> then overlapping instance declarations are permitted.
1685 However, GHC arranges never to commit to using an instance declaration
1686 if another instance declaration also applies, either now or later.
1687
1688 <itemizedlist>
1689 <listitem>
1690
1691 <para>
1692  EITHER <literal>type1</literal> and <literal>type2</literal> do not unify
1693 </para>
1694 </listitem>
1695 <listitem>
1696
1697 <para>
1698  OR <literal>type2</literal> is a substitution instance of <literal>type1</literal>
1699 (but not identical to <literal>type1</literal>), or vice versa.
1700 </para>
1701 </listitem>
1702 </itemizedlist>
1703 Notice that these rules
1704 <itemizedlist>
1705 <listitem>
1706
1707 <para>
1708  make it clear which instance decl to use
1709 (pick the most specific one that matches)
1710
1711 </para>
1712 </listitem>
1713 <listitem>
1714
1715 <para>
1716  do not mention the contexts <literal>context1</literal>, <literal>context2</literal>
1717 Reason: you can pick which instance decl
1718 "matches" based on the type.
1719 </para>
1720 </listitem>
1721
1722 </itemizedlist>
1723 However the rules are over-conservative.  Two instance declarations can overlap,
1724 but it can still be clear in particular situations which to use.  For example:
1725 <programlisting>
1726   instance C (Int,a) where ...
1727   instance C (a,Bool) where ...
1728 </programlisting>
1729 These are rejected by GHC's rules, but it is clear what to do when trying
1730 to solve the constraint <literal>C (Int,Int)</literal> because the second instance
1731 cannot apply.  Yell if this restriction bites you.
1732 </para>
1733 <para>
1734 GHC is also conservative about committing to an overlapping instance.  For example:
1735 <programlisting>
1736   class C a where { op :: a -> a }
1737   instance C [Int] where ...
1738   instance C a => C [a] where ...
1739   
1740   f :: C b => [b] -> [b]
1741   f x = op x
1742 </programlisting>
1743 From the RHS of f we get the constraint <literal>C [b]</literal>.  But
1744 GHC does not commit to the second instance declaration, because in a paricular
1745 call of f, b might be instantiate to Int, so the first instance declaration
1746 would be appropriate.  So GHC rejects the program.  If you add <option>-fallow-incoherent-instances</option>
1747 GHC will instead silently pick the second instance, without complaining about 
1748 the problem of subsequent instantiations.
1749 </para>
1750 <para>
1751 Regrettably, GHC doesn't guarantee to detect overlapping instance
1752 declarations if they appear in different modules.  GHC can "see" the
1753 instance declarations in the transitive closure of all the modules
1754 imported by the one being compiled, so it can "see" all instance decls
1755 when it is compiling <literal>Main</literal>.  However, it currently chooses not
1756 to look at ones that can't possibly be of use in the module currently
1757 being compiled, in the interests of efficiency.  (Perhaps we should
1758 change that decision, at least for <literal>Main</literal>.)
1759 </para>
1760 </sect3>
1761
1762 <sect3>
1763 <title>Type synonyms in the instance head</title>
1764
1765 <para>
1766 <emphasis>Unlike Haskell 98, instance heads may use type
1767 synonyms</emphasis>.  (The instance "head" is the bit after the "=>" in an instance decl.)
1768 As always, using a type synonym is just shorthand for
1769 writing the RHS of the type synonym definition.  For example:
1770
1771
1772 <programlisting>
1773   type Point = (Int,Int)
1774   instance C Point   where ...
1775   instance C [Point] where ...
1776 </programlisting>
1777
1778
1779 is legal.  However, if you added
1780
1781
1782 <programlisting>
1783   instance C (Int,Int) where ...
1784 </programlisting>
1785
1786
1787 as well, then the compiler will complain about the overlapping
1788 (actually, identical) instance declarations.  As always, type synonyms
1789 must be fully applied.  You cannot, for example, write:
1790
1791
1792 <programlisting>
1793   type P a = [[a]]
1794   instance Monad P where ...
1795 </programlisting>
1796
1797
1798 This design decision is independent of all the others, and easily
1799 reversed, but it makes sense to me.
1800
1801 </para>
1802 </sect3>
1803
1804 <sect3 id="undecidable-instances">
1805 <title>Undecidable instances</title>
1806
1807 <para>An instance declaration must normally obey the following rules:
1808 <orderedlist>
1809 <listitem><para>At least one of the types in the <emphasis>head</emphasis> of
1810 an instance declaration <emphasis>must not</emphasis> be a type variable.
1811 For example, these are OK:
1812
1813 <programlisting>
1814   instance C Int a where ...
1815
1816   instance D (Int, Int) where ...
1817
1818   instance E [[a]] where ...
1819 </programlisting>
1820 but this is not:
1821 <programlisting>
1822   instance F a where ...
1823 </programlisting>
1824 Note that instance heads <emphasis>may</emphasis> contain repeated type variables.
1825 For example, this is OK:
1826 <programlisting>
1827   instance Stateful (ST s) (MutVar s) where ...
1828 </programlisting>
1829 </para>
1830 </listitem>
1831
1832
1833 <listitem>
1834 <para>All of the types in the <emphasis>context</emphasis> of
1835 an instance declaration <emphasis>must</emphasis> be type variables.
1836 Thus
1837 <programlisting>
1838 instance C a b => Eq (a,b) where ...
1839 </programlisting>
1840 is OK, but
1841 <programlisting>
1842 instance C Int b => Foo b where ...
1843 </programlisting>
1844 is not OK.
1845 </para>
1846 </listitem>
1847 </orderedlist>
1848 These restrictions ensure that 
1849 context reduction terminates: each reduction step removes one type
1850 constructor.  For example, the following would make the type checker
1851 loop if it wasn't excluded:
1852 <programlisting>
1853   instance C a => C a where ...
1854 </programlisting>
1855 There are two situations in which the rule is a bit of a pain. First,
1856 if one allows overlapping instance declarations then it's quite
1857 convenient to have a "default instance" declaration that applies if
1858 something more specific does not:
1859
1860
1861 <programlisting>
1862   instance C a where
1863     op = ... -- Default
1864 </programlisting>
1865
1866
1867 Second, sometimes you might want to use the following to get the
1868 effect of a "class synonym":
1869
1870
1871 <programlisting>
1872   class (C1 a, C2 a, C3 a) => C a where { }
1873
1874   instance (C1 a, C2 a, C3 a) => C a where { }
1875 </programlisting>
1876
1877
1878 This allows you to write shorter signatures:
1879
1880
1881 <programlisting>
1882   f :: C a => ...
1883 </programlisting>
1884
1885
1886 instead of
1887
1888
1889 <programlisting>
1890   f :: (C1 a, C2 a, C3 a) => ...
1891 </programlisting>
1892
1893
1894 Voluminous correspondence on the Haskell mailing list has convinced me
1895 that it's worth experimenting with more liberal rules.  If you use
1896 the experimental flag <option>-fallow-undecidable-instances</option>
1897 <indexterm><primary>-fallow-undecidable-instances
1898 option</primary></indexterm>, you can use arbitrary
1899 types in both an instance context and instance head.  Termination is ensured by having a
1900 fixed-depth recursion stack.  If you exceed the stack depth you get a
1901 sort of backtrace, and the opportunity to increase the stack depth
1902 with <option>-fcontext-stack</option><emphasis>N</emphasis>.
1903 </para>
1904 <para>
1905 I'm on the lookout for a less brutal solution: a simple rule that preserves decidability while
1906 allowing these idioms interesting idioms.  
1907 </para>
1908 </sect3>
1909
1910
1911 </sect2>
1912
1913 <sect2 id="implicit-parameters">
1914 <title>Implicit parameters</title>
1915
1916 <para> Implicit paramters are implemented as described in 
1917 "Implicit parameters: dynamic scoping with static types", 
1918 J Lewis, MB Shields, E Meijer, J Launchbury,
1919 27th ACM Symposium on Principles of Programming Languages (POPL'00),
1920 Boston, Jan 2000.
1921 </para>
1922
1923 <para>(Most of the following, stil rather incomplete, documentation is
1924 due to Jeff Lewis.)</para>
1925
1926 <para>Implicit parameter support is enabled with the option
1927 <option>-fimplicit-params</option>.</para>
1928
1929 <para>
1930 A variable is called <emphasis>dynamically bound</emphasis> when it is bound by the calling
1931 context of a function and <emphasis>statically bound</emphasis> when bound by the callee's
1932 context. In Haskell, all variables are statically bound. Dynamic
1933 binding of variables is a notion that goes back to Lisp, but was later
1934 discarded in more modern incarnations, such as Scheme. Dynamic binding
1935 can be very confusing in an untyped language, and unfortunately, typed
1936 languages, in particular Hindley-Milner typed languages like Haskell,
1937 only support static scoping of variables.
1938 </para>
1939 <para>
1940 However, by a simple extension to the type class system of Haskell, we
1941 can support dynamic binding. Basically, we express the use of a
1942 dynamically bound variable as a constraint on the type. These
1943 constraints lead to types of the form <literal>(?x::t') => t</literal>, which says "this
1944 function uses a dynamically-bound variable <literal>?x</literal> 
1945 of type <literal>t'</literal>". For
1946 example, the following expresses the type of a sort function,
1947 implicitly parameterized by a comparison function named <literal>cmp</literal>.
1948 <programlisting>
1949   sort :: (?cmp :: a -> a -> Bool) => [a] -> [a]
1950 </programlisting>
1951 The dynamic binding constraints are just a new form of predicate in the type class system.
1952 </para>
1953 <para>
1954 An implicit parameter occurs in an expression using the special form <literal>?x</literal>, 
1955 where <literal>x</literal> is
1956 any valid identifier (e.g. <literal>ord ?x</literal> is a valid expression). 
1957 Use of this construct also introduces a new
1958 dynamic-binding constraint in the type of the expression. 
1959 For example, the following definition
1960 shows how we can define an implicitly parameterized sort function in
1961 terms of an explicitly parameterized <literal>sortBy</literal> function:
1962 <programlisting>
1963   sortBy :: (a -> a -> Bool) -> [a] -> [a]
1964
1965   sort   :: (?cmp :: a -> a -> Bool) => [a] -> [a]
1966   sort    = sortBy ?cmp
1967 </programlisting>
1968 </para>
1969
1970 <sect3>
1971 <title>Implicit-parameter type constraints</title>
1972 <para>
1973 Dynamic binding constraints behave just like other type class
1974 constraints in that they are automatically propagated. Thus, when a
1975 function is used, its implicit parameters are inherited by the
1976 function that called it. For example, our <literal>sort</literal> function might be used
1977 to pick out the least value in a list:
1978 <programlisting>
1979   least   :: (?cmp :: a -> a -> Bool) => [a] -> a
1980   least xs = fst (sort xs)
1981 </programlisting>
1982 Without lifting a finger, the <literal>?cmp</literal> parameter is
1983 propagated to become a parameter of <literal>least</literal> as well. With explicit
1984 parameters, the default is that parameters must always be explicit
1985 propagated. With implicit parameters, the default is to always
1986 propagate them.
1987 </para>
1988 <para>
1989 An implicit-parameter type constraint differs from other type class constraints in the
1990 following way: All uses of a particular implicit parameter must have
1991 the same type. This means that the type of <literal>(?x, ?x)</literal> 
1992 is <literal>(?x::a) => (a,a)</literal>, and not 
1993 <literal>(?x::a, ?x::b) => (a, b)</literal>, as would be the case for type
1994 class constraints.
1995 </para>
1996
1997 <para> You can't have an implicit parameter in the context of a class or instance
1998 declaration.  For example, both these declarations are illegal:
1999 <programlisting>
2000   class (?x::Int) => C a where ...
2001   instance (?x::a) => Foo [a] where ...
2002 </programlisting>
2003 Reason: exactly which implicit parameter you pick up depends on exactly where
2004 you invoke a function. But the ``invocation'' of instance declarations is done
2005 behind the scenes by the compiler, so it's hard to figure out exactly where it is done.
2006 Easiest thing is to outlaw the offending types.</para>
2007 <para>
2008 Implicit-parameter constraints do not cause ambiguity.  For example, consider:
2009 <programlisting>
2010    f :: (?x :: [a]) => Int -> Int
2011    f n = n + length ?x
2012
2013    g :: (Read a, Show a) => String -> String
2014    g s = show (read s)
2015 </programlisting>
2016 Here, <literal>g</literal> has an ambiguous type, and is rejected, but <literal>f</literal>
2017 is fine.  The binding for <literal>?x</literal> at <literal>f</literal>'s call site is 
2018 quite unambiguous, and fixes the type <literal>a</literal>.
2019 </para>
2020 </sect3>
2021
2022 <sect3>
2023 <title>Implicit-parameter bindings</title>
2024
2025 <para>
2026 An implicit parameter is <emphasis>bound</emphasis> using the standard
2027 <literal>let</literal> or <literal>where</literal> binding forms.
2028 For example, we define the <literal>min</literal> function by binding
2029 <literal>cmp</literal>.
2030 <programlisting>
2031   min :: [a] -> a
2032   min  = let ?cmp = (&lt;=) in least
2033 </programlisting>
2034 </para>
2035 <para>
2036 A group of implicit-parameter bindings may occur anywhere a normal group of Haskell
2037 bindings can occur, except at top level.  That is, they can occur in a <literal>let</literal> 
2038 (including in a list comprehension, or do-notation, or pattern guards), 
2039 or a <literal>where</literal> clause.
2040 Note the following points:
2041 <itemizedlist>
2042 <listitem><para>
2043 An implicit-parameter binding group must be a
2044 collection of simple bindings to implicit-style variables (no
2045 function-style bindings, and no type signatures); these bindings are
2046 neither polymorphic or recursive.  
2047 </para></listitem>
2048 <listitem><para>
2049 You may not mix implicit-parameter bindings with ordinary bindings in a 
2050 single <literal>let</literal>
2051 expression; use two nested <literal>let</literal>s instead.
2052 (In the case of <literal>where</literal> you are stuck, since you can't nest <literal>where</literal> clauses.)
2053 </para></listitem>
2054
2055 <listitem><para>
2056 You may put multiple implicit-parameter bindings in a
2057 single binding group; but they are <emphasis>not</emphasis> treated
2058 as a mutually recursive group (as ordinary <literal>let</literal> bindings are).
2059 Instead they are treated as a non-recursive group, simultaneously binding all the implicit
2060 parameter.  The bindings are not nested, and may be re-ordered without changing
2061 the meaning of the program.
2062 For example, consider:
2063 <programlisting>
2064   f t = let { ?x = t; ?y = ?x+(1::Int) } in ?x + ?y
2065 </programlisting>
2066 The use of <literal>?x</literal> in the binding for <literal>?y</literal> does not "see"
2067 the binding for <literal>?x</literal>, so the type of <literal>f</literal> is
2068 <programlisting>
2069   f :: (?x::Int) => Int -> Int
2070 </programlisting>
2071 </para></listitem>
2072 </itemizedlist>
2073 </para>
2074
2075 </sect3>
2076 </sect2>
2077
2078 <sect2 id="linear-implicit-parameters">
2079 <title>Linear implicit parameters</title>
2080 <para>
2081 Linear implicit parameters are an idea developed by Koen Claessen,
2082 Mark Shields, and Simon PJ.  They address the long-standing
2083 problem that monads seem over-kill for certain sorts of problem, notably:
2084 </para>
2085 <itemizedlist>
2086 <listitem> <para> distributing a supply of unique names </para> </listitem>
2087 <listitem> <para> distributing a suppply of random numbers </para> </listitem>
2088 <listitem> <para> distributing an oracle (as in QuickCheck) </para> </listitem>
2089 </itemizedlist>
2090
2091 <para>
2092 Linear implicit parameters are just like ordinary implicit parameters,
2093 except that they are "linear" -- that is, they cannot be copied, and
2094 must be explicitly "split" instead.  Linear implicit parameters are
2095 written '<literal>%x</literal>' instead of '<literal>?x</literal>'.  
2096 (The '/' in the '%' suggests the split!)
2097 </para>
2098 <para>
2099 For example:
2100 <programlisting>
2101     import GHC.Exts( Splittable )
2102
2103     data NameSupply = ...
2104     
2105     splitNS :: NameSupply -> (NameSupply, NameSupply)
2106     newName :: NameSupply -> Name
2107
2108     instance Splittable NameSupply where
2109         split = splitNS
2110
2111
2112     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
2113     f env (Lam x e) = Lam x' (f env e)
2114                     where
2115                       x'   = newName %ns
2116                       env' = extend env x x'
2117     ...more equations for f...
2118 </programlisting>
2119 Notice that the implicit parameter %ns is consumed 
2120 <itemizedlist>
2121 <listitem> <para> once by the call to <literal>newName</literal> </para> </listitem>
2122 <listitem> <para> once by the recursive call to <literal>f</literal> </para></listitem>
2123 </itemizedlist>
2124 </para>
2125 <para>
2126 So the translation done by the type checker makes
2127 the parameter explicit:
2128 <programlisting>
2129     f :: NameSupply -> Env -> Expr -> Expr
2130     f ns env (Lam x e) = Lam x' (f ns1 env e)
2131                        where
2132                          (ns1,ns2) = splitNS ns
2133                          x' = newName ns2
2134                          env = extend env x x'
2135 </programlisting>
2136 Notice the call to 'split' introduced by the type checker.
2137 How did it know to use 'splitNS'?  Because what it really did
2138 was to introduce a call to the overloaded function 'split',
2139 defined by the class <literal>Splittable</literal>:
2140 <programlisting>
2141         class Splittable a where
2142           split :: a -> (a,a)
2143 </programlisting>
2144 The instance for <literal>Splittable NameSupply</literal> tells GHC how to implement
2145 split for name supplies.  But we can simply write
2146 <programlisting>
2147         g x = (x, %ns, %ns)
2148 </programlisting>
2149 and GHC will infer
2150 <programlisting>
2151         g :: (Splittable a, %ns :: a) => b -> (b,a,a)
2152 </programlisting>
2153 The <literal>Splittable</literal> class is built into GHC.  It's exported by module 
2154 <literal>GHC.Exts</literal>.
2155 </para>
2156 <para>
2157 Other points:
2158 <itemizedlist>
2159 <listitem> <para> '<literal>?x</literal>' and '<literal>%x</literal>' 
2160 are entirely distinct implicit parameters: you 
2161   can use them together and they won't intefere with each other. </para>
2162 </listitem>
2163
2164 <listitem> <para> You can bind linear implicit parameters in 'with' clauses. </para> </listitem>
2165
2166 <listitem> <para>You cannot have implicit parameters (whether linear or not)
2167   in the context of a class or instance declaration. </para></listitem>
2168 </itemizedlist>
2169 </para>
2170
2171 <sect3><title>Warnings</title>
2172
2173 <para>
2174 The monomorphism restriction is even more important than usual.
2175 Consider the example above:
2176 <programlisting>
2177     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
2178     f env (Lam x e) = Lam x' (f env e)
2179                     where
2180                       x'   = newName %ns
2181                       env' = extend env x x'
2182 </programlisting>
2183 If we replaced the two occurrences of x' by (newName %ns), which is
2184 usually a harmless thing to do, we get:
2185 <programlisting>
2186     f :: (%ns :: NameSupply) => Env -> Expr -> Expr
2187     f env (Lam x e) = Lam (newName %ns) (f env e)
2188                     where
2189                       env' = extend env x (newName %ns)
2190 </programlisting>
2191 But now the name supply is consumed in <emphasis>three</emphasis> places
2192 (the two calls to newName,and the recursive call to f), so
2193 the result is utterly different.  Urk!  We don't even have 
2194 the beta rule.
2195 </para>
2196 <para>
2197 Well, this is an experimental change.  With implicit
2198 parameters we have already lost beta reduction anyway, and
2199 (as John Launchbury puts it) we can't sensibly reason about
2200 Haskell programs without knowing their typing.
2201 </para>
2202
2203 </sect3>
2204
2205 <sect3><title>Recursive functions</title>
2206 <para>Linear implicit parameters can be particularly tricky when you have a recursive function
2207 Consider
2208 <programlisting>
2209         foo :: %x::T => Int -> [Int]
2210         foo 0 = []
2211         foo n = %x : foo (n-1)
2212 </programlisting>
2213 where T is some type in class Splittable.</para>
2214 <para>
2215 Do you get a list of all the same T's or all different T's
2216 (assuming that split gives two distinct T's back)?
2217 </para><para>
2218 If you supply the type signature, taking advantage of polymorphic
2219 recursion, you get what you'd probably expect.  Here's the
2220 translated term, where the implicit param is made explicit:
2221 <programlisting>
2222         foo x 0 = []
2223         foo x n = let (x1,x2) = split x
2224                   in x1 : foo x2 (n-1)
2225 </programlisting>
2226 But if you don't supply a type signature, GHC uses the Hindley
2227 Milner trick of using a single monomorphic instance of the function
2228 for the recursive calls. That is what makes Hindley Milner type inference
2229 work.  So the translation becomes
2230 <programlisting>
2231         foo x = let
2232                   foom 0 = []
2233                   foom n = x : foom (n-1)
2234                 in
2235                 foom
2236 </programlisting>
2237 Result: 'x' is not split, and you get a list of identical T's.  So the
2238 semantics of the program depends on whether or not foo has a type signature.
2239 Yikes!
2240 </para><para>
2241 You may say that this is a good reason to dislike linear implicit parameters
2242 and you'd be right.  That is why they are an experimental feature. 
2243 </para>
2244 </sect3>
2245
2246 </sect2>
2247
2248 <sect2 id="functional-dependencies">
2249 <title>Functional dependencies
2250 </title>
2251
2252 <para> Functional dependencies are implemented as described by Mark Jones
2253 in &ldquo;<ulink url="http://www.cse.ogi.edu/~mpj/pubs/fundeps.html">Type Classes with Functional Dependencies</ulink>&rdquo;, Mark P. Jones, 
2254 In Proceedings of the 9th European Symposium on Programming, 
2255 ESOP 2000, Berlin, Germany, March 2000, Springer-Verlag LNCS 1782,
2256 .
2257 </para>
2258 <para>
2259 Functional dependencies are introduced by a vertical bar in the syntax of a 
2260 class declaration;  e.g. 
2261 <programlisting>
2262   class (Monad m) => MonadState s m | m -> s where ...
2263
2264   class Foo a b c | a b -> c where ...
2265 </programlisting>
2266 There should be more documentation, but there isn't (yet).  Yell if you need it.
2267 </para>
2268 </sect2>
2269
2270
2271
2272 <sect2 id="sec-kinding">
2273 <title>Explicitly-kinded quantification</title>
2274
2275 <para>
2276 Haskell infers the kind of each type variable.  Sometimes it is nice to be able
2277 to give the kind explicitly as (machine-checked) documentation, 
2278 just as it is nice to give a type signature for a function.  On some occasions,
2279 it is essential to do so.  For example, in his paper "Restricted Data Types in Haskell" (Haskell Workshop 1999)
2280 John Hughes had to define the data type:
2281 <screen>
2282      data Set cxt a = Set [a]
2283                     | Unused (cxt a -> ())
2284 </screen>
2285 The only use for the <literal>Unused</literal> constructor was to force the correct
2286 kind for the type variable <literal>cxt</literal>.
2287 </para>
2288 <para>
2289 GHC now instead allows you to specify the kind of a type variable directly, wherever
2290 a type variable is explicitly bound.  Namely:
2291 <itemizedlist>
2292 <listitem><para><literal>data</literal> declarations:
2293 <screen>
2294   data Set (cxt :: * -> *) a = Set [a]
2295 </screen></para></listitem>
2296 <listitem><para><literal>type</literal> declarations:
2297 <screen>
2298   type T (f :: * -> *) = f Int
2299 </screen></para></listitem>
2300 <listitem><para><literal>class</literal> declarations:
2301 <screen>
2302   class (Eq a) => C (f :: * -> *) a where ...
2303 </screen></para></listitem>
2304 <listitem><para><literal>forall</literal>'s in type signatures:
2305 <screen>
2306   f :: forall (cxt :: * -> *). Set cxt Int
2307 </screen></para></listitem>
2308 </itemizedlist>
2309 </para>
2310
2311 <para>
2312 The parentheses are required.  Some of the spaces are required too, to
2313 separate the lexemes.  If you write <literal>(f::*->*)</literal> you
2314 will get a parse error, because "<literal>::*->*</literal>" is a
2315 single lexeme in Haskell.
2316 </para>
2317
2318 <para>
2319 As part of the same extension, you can put kind annotations in types
2320 as well.  Thus:
2321 <screen>
2322    f :: (Int :: *) -> Int
2323    g :: forall a. a -> (a :: *)
2324 </screen>
2325 The syntax is
2326 <screen>
2327    atype ::= '(' ctype '::' kind ')
2328 </screen>
2329 The parentheses are required.
2330 </para>
2331 </sect2>
2332
2333
2334 <sect2 id="universal-quantification">
2335 <title>Arbitrary-rank polymorphism
2336 </title>
2337
2338 <para>
2339 Haskell type signatures are implicitly quantified.  The new keyword <literal>forall</literal>
2340 allows us to say exactly what this means.  For example:
2341 </para>
2342 <para>
2343 <programlisting>
2344         g :: b -> b
2345 </programlisting>
2346 means this:
2347 <programlisting>
2348         g :: forall b. (b -> b)
2349 </programlisting>
2350 The two are treated identically.
2351 </para>
2352
2353 <para>
2354 However, GHC's type system supports <emphasis>arbitrary-rank</emphasis> 
2355 explicit universal quantification in
2356 types. 
2357 For example, all the following types are legal:
2358 <programlisting>
2359     f1 :: forall a b. a -> b -> a
2360     g1 :: forall a b. (Ord a, Eq  b) => a -> b -> a
2361
2362     f2 :: (forall a. a->a) -> Int -> Int
2363     g2 :: (forall a. Eq a => [a] -> a -> Bool) -> Int -> Int
2364
2365     f3 :: ((forall a. a->a) -> Int) -> Bool -> Bool
2366 </programlisting>
2367 Here, <literal>f1</literal> and <literal>g1</literal> are rank-1 types, and
2368 can be written in standard Haskell (e.g. <literal>f1 :: a->b->a</literal>).
2369 The <literal>forall</literal> makes explicit the universal quantification that
2370 is implicitly added by Haskell.
2371 </para>
2372 <para>
2373 The functions <literal>f2</literal> and <literal>g2</literal> have rank-2 types;
2374 the <literal>forall</literal> is on the left of a function arrrow.  As <literal>g2</literal>
2375 shows, the polymorphic type on the left of the function arrow can be overloaded.
2376 </para>
2377 <para>
2378 The function <literal>f3</literal> has a rank-3 type;
2379 it has rank-2 types on the left of a function arrow.
2380 </para>
2381 <para>
2382 GHC allows types of arbitrary rank; you can nest <literal>forall</literal>s
2383 arbitrarily deep in function arrows.   (GHC used to be restricted to rank 2, but
2384 that restriction has now been lifted.)
2385 In particular, a forall-type (also called a "type scheme"),
2386 including an operational type class context, is legal:
2387 <itemizedlist>
2388 <listitem> <para> On the left of a function arrow </para> </listitem>
2389 <listitem> <para> On the right of a function arrow (see <xref linkend="hoist"/>) </para> </listitem>
2390 <listitem> <para> As the argument of a constructor, or type of a field, in a data type declaration. For
2391 example, any of the <literal>f1,f2,f3,g1,g2</literal> above would be valid
2392 field type signatures.</para> </listitem>
2393 <listitem> <para> As the type of an implicit parameter </para> </listitem>
2394 <listitem> <para> In a pattern type signature (see <xref linkend="scoped-type-variables"/>) </para> </listitem>
2395 </itemizedlist>
2396 There is one place you cannot put a <literal>forall</literal>:
2397 you cannot instantiate a type variable with a forall-type.  So you cannot 
2398 make a forall-type the argument of a type constructor.  So these types are illegal:
2399 <programlisting>
2400     x1 :: [forall a. a->a]
2401     x2 :: (forall a. a->a, Int)
2402     x3 :: Maybe (forall a. a->a)
2403 </programlisting>
2404 Of course <literal>forall</literal> becomes a keyword; you can't use <literal>forall</literal> as
2405 a type variable any more!
2406 </para>
2407
2408
2409 <sect3 id="univ">
2410 <title>Examples
2411 </title>
2412
2413 <para>
2414 In a <literal>data</literal> or <literal>newtype</literal> declaration one can quantify
2415 the types of the constructor arguments.  Here are several examples:
2416 </para>
2417
2418 <para>
2419
2420 <programlisting>
2421 data T a = T1 (forall b. b -> b -> b) a
2422
2423 data MonadT m = MkMonad { return :: forall a. a -> m a,
2424                           bind   :: forall a b. m a -> (a -> m b) -> m b
2425                         }
2426
2427 newtype Swizzle = MkSwizzle (Ord a => [a] -> [a])
2428 </programlisting>
2429
2430 </para>
2431
2432 <para>
2433 The constructors have rank-2 types:
2434 </para>
2435
2436 <para>
2437
2438 <programlisting>
2439 T1 :: forall a. (forall b. b -> b -> b) -> a -> T a
2440 MkMonad :: forall m. (forall a. a -> m a)
2441                   -> (forall a b. m a -> (a -> m b) -> m b)
2442                   -> MonadT m
2443 MkSwizzle :: (Ord a => [a] -> [a]) -> Swizzle
2444 </programlisting>
2445
2446 </para>
2447
2448 <para>
2449 Notice that you don't need to use a <literal>forall</literal> if there's an
2450 explicit context.  For example in the first argument of the
2451 constructor <function>MkSwizzle</function>, an implicit "<literal>forall a.</literal>" is
2452 prefixed to the argument type.  The implicit <literal>forall</literal>
2453 quantifies all type variables that are not already in scope, and are
2454 mentioned in the type quantified over.
2455 </para>
2456
2457 <para>
2458 As for type signatures, implicit quantification happens for non-overloaded
2459 types too.  So if you write this:
2460
2461 <programlisting>
2462   data T a = MkT (Either a b) (b -> b)
2463 </programlisting>
2464
2465 it's just as if you had written this:
2466
2467 <programlisting>
2468   data T a = MkT (forall b. Either a b) (forall b. b -> b)
2469 </programlisting>
2470
2471 That is, since the type variable <literal>b</literal> isn't in scope, it's
2472 implicitly universally quantified.  (Arguably, it would be better
2473 to <emphasis>require</emphasis> explicit quantification on constructor arguments
2474 where that is what is wanted.  Feedback welcomed.)
2475 </para>
2476
2477 <para>
2478 You construct values of types <literal>T1, MonadT, Swizzle</literal> by applying
2479 the constructor to suitable values, just as usual.  For example,
2480 </para>
2481
2482 <para>
2483
2484 <programlisting>
2485     a1 :: T Int
2486     a1 = T1 (\xy->x) 3
2487     
2488     a2, a3 :: Swizzle
2489     a2 = MkSwizzle sort
2490     a3 = MkSwizzle reverse
2491     
2492     a4 :: MonadT Maybe
2493     a4 = let r x = Just x
2494              b m k = case m of
2495                        Just y -> k y
2496                        Nothing -> Nothing
2497          in
2498          MkMonad r b
2499
2500     mkTs :: (forall b. b -> b -> b) -> a -> [T a]
2501     mkTs f x y = [T1 f x, T1 f y]
2502 </programlisting>
2503
2504 </para>
2505
2506 <para>
2507 The type of the argument can, as usual, be more general than the type
2508 required, as <literal>(MkSwizzle reverse)</literal> shows.  (<function>reverse</function>
2509 does not need the <literal>Ord</literal> constraint.)
2510 </para>
2511
2512 <para>
2513 When you use pattern matching, the bound variables may now have
2514 polymorphic types.  For example:
2515 </para>
2516
2517 <para>
2518
2519 <programlisting>
2520     f :: T a -> a -> (a, Char)
2521     f (T1 w k) x = (w k x, w 'c' 'd')
2522
2523     g :: (Ord a, Ord b) => Swizzle -> [a] -> (a -> b) -> [b]
2524     g (MkSwizzle s) xs f = s (map f (s xs))
2525
2526     h :: MonadT m -> [m a] -> m [a]
2527     h m [] = return m []
2528     h m (x:xs) = bind m x          $ \y ->
2529                  bind m (h m xs)   $ \ys ->
2530                  return m (y:ys)
2531 </programlisting>
2532
2533 </para>
2534
2535 <para>
2536 In the function <function>h</function> we use the record selectors <literal>return</literal>
2537 and <literal>bind</literal> to extract the polymorphic bind and return functions
2538 from the <literal>MonadT</literal> data structure, rather than using pattern
2539 matching.
2540 </para>
2541 </sect3>
2542
2543 <sect3>
2544 <title>Type inference</title>
2545
2546 <para>
2547 In general, type inference for arbitrary-rank types is undecideable.
2548 GHC uses an algorithm proposed by Odersky and Laufer ("Putting type annotations to work", POPL'96)
2549 to get a decidable algorithm by requiring some help from the programmer.
2550 We do not yet have a formal specification of "some help" but the rule is this:
2551 </para>
2552 <para>
2553 <emphasis>For a lambda-bound or case-bound variable, x, either the programmer
2554 provides an explicit polymorphic type for x, or GHC's type inference will assume
2555 that x's type has no foralls in it</emphasis>.
2556 </para>
2557 <para>
2558 What does it mean to "provide" an explicit type for x?  You can do that by 
2559 giving a type signature for x directly, using a pattern type signature
2560 (<xref linkend="scoped-type-variables"/>), thus:
2561 <programlisting>
2562      \ f :: (forall a. a->a) -> (f True, f 'c')
2563 </programlisting>
2564 Alternatively, you can give a type signature to the enclosing
2565 context, which GHC can "push down" to find the type for the variable:
2566 <programlisting>
2567      (\ f -> (f True, f 'c')) :: (forall a. a->a) -> (Bool,Char)
2568 </programlisting>
2569 Here the type signature on the expression can be pushed inwards
2570 to give a type signature for f.  Similarly, and more commonly,
2571 one can give a type signature for the function itself:
2572 <programlisting>
2573      h :: (forall a. a->a) -> (Bool,Char)
2574      h f = (f True, f 'c')
2575 </programlisting>
2576 You don't need to give a type signature if the lambda bound variable
2577 is a constructor argument.  Here is an example we saw earlier:
2578 <programlisting>
2579     f :: T a -> a -> (a, Char)
2580     f (T1 w k) x = (w k x, w 'c' 'd')
2581 </programlisting>
2582 Here we do not need to give a type signature to <literal>w</literal>, because
2583 it is an argument of constructor <literal>T1</literal> and that tells GHC all
2584 it needs to know.
2585 </para>
2586
2587 </sect3>
2588
2589
2590 <sect3 id="implicit-quant">
2591 <title>Implicit quantification</title>
2592
2593 <para>
2594 GHC performs implicit quantification as follows.  <emphasis>At the top level (only) of 
2595 user-written types, if and only if there is no explicit <literal>forall</literal>,
2596 GHC finds all the type variables mentioned in the type that are not already
2597 in scope, and universally quantifies them.</emphasis>  For example, the following pairs are 
2598 equivalent:
2599 <programlisting>
2600   f :: a -> a
2601   f :: forall a. a -> a
2602
2603   g (x::a) = let
2604                 h :: a -> b -> b
2605                 h x y = y
2606              in ...
2607   g (x::a) = let
2608                 h :: forall b. a -> b -> b
2609                 h x y = y
2610              in ...
2611 </programlisting>
2612 </para>
2613 <para>
2614 Notice that GHC does <emphasis>not</emphasis> find the innermost possible quantification
2615 point.  For example:
2616 <programlisting>
2617   f :: (a -> a) -> Int
2618            -- MEANS
2619   f :: forall a. (a -> a) -> Int
2620            -- NOT
2621   f :: (forall a. a -> a) -> Int
2622
2623
2624   g :: (Ord a => a -> a) -> Int
2625            -- MEANS the illegal type
2626   g :: forall a. (Ord a => a -> a) -> Int
2627            -- NOT
2628   g :: (forall a. Ord a => a -> a) -> Int
2629 </programlisting>
2630 The latter produces an illegal type, which you might think is silly,
2631 but at least the rule is simple.  If you want the latter type, you
2632 can write your for-alls explicitly.  Indeed, doing so is strongly advised
2633 for rank-2 types.
2634 </para>
2635 </sect3>
2636 </sect2>
2637
2638
2639
2640
2641 <sect2 id="scoped-type-variables">
2642 <title>Scoped type variables
2643 </title>
2644
2645 <para>
2646 A <emphasis>pattern type signature</emphasis> can introduce a <emphasis>scoped type
2647 variable</emphasis>.  For example
2648 </para>
2649
2650 <para>
2651
2652 <programlisting>
2653 f (xs::[a]) = ys ++ ys
2654            where
2655               ys :: [a]
2656               ys = reverse xs
2657 </programlisting>
2658
2659 </para>
2660
2661 <para>
2662 The pattern <literal>(xs::[a])</literal> includes a type signature for <varname>xs</varname>.
2663 This brings the type variable <literal>a</literal> into scope; it scopes over
2664 all the patterns and right hand sides for this equation for <function>f</function>.
2665 In particular, it is in scope at the type signature for <varname>y</varname>.
2666 </para>
2667
2668 <para>
2669  Pattern type signatures are completely orthogonal to ordinary, separate
2670 type signatures.  The two can be used independently or together.
2671 At ordinary type signatures, such as that for <varname>ys</varname>, any type variables
2672 mentioned in the type signature <emphasis>that are not in scope</emphasis> are
2673 implicitly universally quantified.  (If there are no type variables in
2674 scope, all type variables mentioned in the signature are universally
2675 quantified, which is just as in Haskell 98.)  In this case, since <varname>a</varname>
2676 is in scope, it is not universally quantified, so the type of <varname>ys</varname> is
2677 the same as that of <varname>xs</varname>.  In Haskell 98 it is not possible to declare
2678 a type for <varname>ys</varname>; a major benefit of scoped type variables is that
2679 it becomes possible to do so.
2680 </para>
2681
2682 <para>
2683 Scoped type variables are implemented in both GHC and Hugs.  Where the
2684 implementations differ from the specification below, those differences
2685 are noted.
2686 </para>
2687
2688 <para>
2689 So much for the basic idea.  Here are the details.
2690 </para>
2691
2692 <sect3>
2693 <title>What a pattern type signature means</title>
2694 <para>
2695 A type variable brought into scope by a pattern type signature is simply
2696 the name for a type.   The restriction they express is that all occurrences
2697 of the same name mean the same type.  For example:
2698 <programlisting>
2699   f :: [Int] -> Int -> Int
2700   f (xs::[a]) (y::a) = (head xs + y) :: a
2701 </programlisting>
2702 The pattern type signatures on the left hand side of
2703 <literal>f</literal> express the fact that <literal>xs</literal>
2704 must be a list of things of some type <literal>a</literal>; and that <literal>y</literal>
2705 must have this same type.  The type signature on the expression <literal>(head xs)</literal>
2706 specifies that this expression must have the same type <literal>a</literal>.
2707 <emphasis>There is no requirement that the type named by "<literal>a</literal>" is
2708 in fact a type variable</emphasis>.  Indeed, in this case, the type named by "<literal>a</literal>" is
2709 <literal>Int</literal>.  (This is a slight liberalisation from the original rather complex
2710 rules, which specified that a pattern-bound type variable should be universally quantified.)
2711 For example, all of these are legal:</para>
2712
2713 <programlisting>
2714   t (x::a) (y::a) = x+y*2
2715
2716   f (x::a) (y::b) = [x,y]       -- a unifies with b
2717
2718   g (x::a) = x + 1::Int         -- a unifies with Int
2719
2720   h x = let k (y::a) = [x,y]    -- a is free in the
2721         in k x                  -- environment
2722
2723   k (x::a) True    = ...        -- a unifies with Int
2724   k (x::Int) False = ...
2725
2726   w :: [b] -> [b]
2727   w (x::a) = x                  -- a unifies with [b]
2728 </programlisting>
2729
2730 </sect3>
2731
2732 <sect3>
2733 <title>Scope and implicit quantification</title>
2734
2735 <para>
2736
2737 <itemizedlist>
2738 <listitem>
2739
2740 <para>
2741 All the type variables mentioned in a pattern,
2742 that are not already in scope,
2743 are brought into scope by the pattern.  We describe this set as
2744 the <emphasis>type variables bound by the pattern</emphasis>.
2745 For example:
2746 <programlisting>
2747   f (x::a) = let g (y::(a,b)) = fst y
2748              in
2749              g (x,True)
2750 </programlisting>
2751 The pattern <literal>(x::a)</literal> brings the type variable
2752 <literal>a</literal> into scope, as well as the term 
2753 variable <literal>x</literal>.  The pattern <literal>(y::(a,b))</literal>
2754 contains an occurrence of the already-in-scope type variable <literal>a</literal>,
2755 and brings into scope the type variable <literal>b</literal>.
2756 </para>
2757 </listitem>
2758
2759 <listitem>
2760 <para>
2761 The type variable(s) bound by the pattern have the same scope
2762 as the term variable(s) bound by the pattern.  For example:
2763 <programlisting>
2764   let
2765     f (x::a) = &lt;...rhs of f...>
2766     (p::b, q::b) = (1,2)
2767   in &lt;...body of let...>
2768 </programlisting>
2769 Here, the type variable <literal>a</literal> scopes over the right hand side of <literal>f</literal>,
2770 just like <literal>x</literal> does; while the type variable <literal>b</literal> scopes over the
2771 body of the <literal>let</literal>, and all the other definitions in the <literal>let</literal>,
2772 just like <literal>p</literal> and <literal>q</literal> do.
2773 Indeed, the newly bound type variables also scope over any ordinary, separate
2774 type signatures in the <literal>let</literal> group.
2775 </para>
2776 </listitem>
2777
2778
2779 <listitem>
2780 <para>
2781 The type variables bound by the pattern may be 
2782 mentioned in ordinary type signatures or pattern 
2783 type signatures anywhere within their scope.
2784
2785 </para>
2786 </listitem>
2787
2788 <listitem>
2789 <para>
2790  In ordinary type signatures, any type variable mentioned in the
2791 signature that is in scope is <emphasis>not</emphasis> universally quantified.
2792
2793 </para>
2794 </listitem>
2795
2796 <listitem>
2797
2798 <para>
2799  Ordinary type signatures do not bring any new type variables
2800 into scope (except in the type signature itself!). So this is illegal:
2801
2802 <programlisting>
2803   f :: a -> a
2804   f x = x::a
2805 </programlisting>
2806
2807 It's illegal because <varname>a</varname> is not in scope in the body of <function>f</function>,
2808 so the ordinary signature <literal>x::a</literal> is equivalent to <literal>x::forall a.a</literal>;
2809 and that is an incorrect typing.
2810
2811 </para>
2812 </listitem>
2813
2814 <listitem>
2815 <para>
2816 The pattern type signature is a monotype:
2817 </para>
2818
2819 <itemizedlist>
2820 <listitem> <para> 
2821 A pattern type signature cannot contain any explicit <literal>forall</literal> quantification.
2822 </para> </listitem>
2823
2824 <listitem>  <para> 
2825 The type variables bound by a pattern type signature can only be instantiated to monotypes,
2826 not to type schemes.
2827 </para> </listitem>
2828
2829 <listitem>  <para> 
2830 There is no implicit universal quantification on pattern type signatures (in contrast to
2831 ordinary type signatures).
2832 </para> </listitem>
2833
2834 </itemizedlist>
2835
2836 </listitem>
2837
2838 <listitem>
2839 <para>
2840
2841 The type variables in the head of a <literal>class</literal> or <literal>instance</literal> declaration
2842 scope over the methods defined in the <literal>where</literal> part.  For example:
2843
2844
2845 <programlisting>
2846   class C a where
2847     op :: [a] -> a
2848
2849     op xs = let ys::[a]
2850                 ys = reverse xs
2851             in
2852             head ys
2853 </programlisting>
2854
2855
2856 (Not implemented in Hugs yet, Dec 98).
2857 </para>
2858 </listitem>
2859
2860 </itemizedlist>
2861
2862 </para>
2863
2864 </sect3>
2865
2866 <sect3>
2867 <title>Where a pattern type signature can occur</title>
2868
2869 <para>
2870 A pattern type signature can occur in any pattern.  For example:
2871 <itemizedlist>
2872
2873 <listitem>
2874 <para>
2875 A pattern type signature can be on an arbitrary sub-pattern, not
2876 ust on a variable:
2877
2878
2879 <programlisting>
2880   f ((x,y)::(a,b)) = (y,x) :: (b,a)
2881 </programlisting>
2882
2883
2884 </para>
2885 </listitem>
2886 <listitem>
2887
2888 <para>
2889  Pattern type signatures, including the result part, can be used
2890 in lambda abstractions:
2891
2892 <programlisting>
2893   (\ (x::a, y) :: a -> x)
2894 </programlisting>
2895 </para>
2896 </listitem>
2897 <listitem>
2898
2899 <para>
2900  Pattern type signatures, including the result part, can be used
2901 in <literal>case</literal> expressions:
2902
2903
2904 <programlisting>
2905   case e of { (x::a, y) :: a -> x }
2906 </programlisting>
2907
2908 </para>
2909 </listitem>
2910
2911 <listitem>
2912 <para>
2913 To avoid ambiguity, the type after the &ldquo;<literal>::</literal>&rdquo; in a result
2914 pattern signature on a lambda or <literal>case</literal> must be atomic (i.e. a single
2915 token or a parenthesised type of some sort).  To see why,
2916 consider how one would parse this:
2917
2918
2919 <programlisting>
2920   \ x :: a -> b -> x
2921 </programlisting>
2922
2923
2924 </para>
2925 </listitem>
2926
2927 <listitem>
2928
2929 <para>
2930  Pattern type signatures can bind existential type variables.
2931 For example:
2932
2933
2934 <programlisting>
2935   data T = forall a. MkT [a]
2936
2937   f :: T -> T
2938   f (MkT [t::a]) = MkT t3
2939                  where
2940                    t3::[a] = [t,t,t]
2941 </programlisting>
2942
2943
2944 </para>
2945 </listitem>
2946
2947
2948 <listitem>
2949
2950 <para>
2951 Pattern type signatures 
2952 can be used in pattern bindings:
2953
2954 <programlisting>
2955   f x = let (y, z::a) = x in ...
2956   f1 x                = let (y, z::Int) = x in ...
2957   f2 (x::(Int,a))     = let (y, z::a)   = x in ...
2958   f3 :: (b->b)        = \x -> x
2959 </programlisting>
2960
2961 In all such cases, the binding is not generalised over the pattern-bound
2962 type variables.  Thus <literal>f3</literal> is monomorphic; <literal>f3</literal>
2963 has type <literal>b -&gt; b</literal> for some type <literal>b</literal>, 
2964 and <emphasis>not</emphasis> <literal>forall b. b -&gt; b</literal>.
2965 In contrast, the binding
2966 <programlisting>
2967   f4 :: b->b
2968   f4 = \x -> x
2969 </programlisting>
2970 makes a polymorphic function, but <literal>b</literal> is not in scope anywhere
2971 in <literal>f4</literal>'s scope.
2972
2973 </para>
2974 </listitem>
2975 </itemizedlist>
2976 </para>
2977
2978 </sect3>
2979
2980 <sect3>
2981 <title>Result type signatures</title>
2982
2983 <para>
2984 The result type of a function can be given a signature, thus:
2985
2986
2987 <programlisting>
2988   f (x::a) :: [a] = [x,x,x]
2989 </programlisting>
2990
2991
2992 The final <literal>:: [a]</literal> after all the patterns gives a signature to the
2993 result type.  Sometimes this is the only way of naming the type variable
2994 you want:
2995
2996
2997 <programlisting>
2998   f :: Int -> [a] -> [a]
2999   f n :: ([a] -> [a]) = let g (x::a, y::a) = (y,x)
3000                         in \xs -> map g (reverse xs `zip` xs)
3001 </programlisting>
3002
3003 </para>
3004 <para>
3005 The type variables bound in a result type signature scope over the right hand side
3006 of the definition. However, consider this corner-case:
3007 <programlisting>
3008   rev1 :: [a] -> [a] = \xs -> reverse xs
3009
3010   foo ys = rev (ys::[a])
3011 </programlisting>
3012 The signature on <literal>rev1</literal> is considered a pattern type signature, not a result
3013 type signature, and the type variables it binds have the same scope as <literal>rev1</literal>
3014 itself (i.e. the right-hand side of <literal>rev1</literal> and the rest of the module too).
3015 In particular, the expression <literal>(ys::[a])</literal> is OK, because the type variable <literal>a</literal>
3016 is in scope (otherwise it would mean <literal>(ys::forall a.[a])</literal>, which would be rejected).  
3017 </para>
3018 <para>
3019 As mentioned above, <literal>rev1</literal> is made monomorphic by this scoping rule.
3020 For example, the following program would be rejected, because it claims that <literal>rev1</literal>
3021 is polymorphic:
3022 <programlisting>
3023   rev1 :: [b] -> [b]
3024   rev1 :: [a] -> [a] = \xs -> reverse xs
3025 </programlisting>
3026 </para>
3027
3028 <para>
3029 Result type signatures are not yet implemented in Hugs.
3030 </para>
3031
3032 </sect3>
3033
3034 </sect2>
3035
3036 <sect2 id="deriving-typeable">
3037 <title>Deriving clause for classes <literal>Typeable</literal> and <literal>Data</literal></title>
3038
3039 <para>
3040 Haskell 98 allows the programmer to add "<literal>deriving( Eq, Ord )</literal>" to a data type 
3041 declaration, to generate a standard instance declaration for classes specified in the <literal>deriving</literal> clause.  
3042 In Haskell 98, the only classes that may appear in the <literal>deriving</literal> clause are the standard
3043 classes <literal>Eq</literal>, <literal>Ord</literal>, 
3044 <literal>Enum</literal>, <literal>Ix</literal>, <literal>Bounded</literal>, <literal>Read</literal>, and <literal>Show</literal>.
3045 </para>
3046 <para>
3047 GHC extends this list with two more classes that may be automatically derived 
3048 (provided the <option>-fglasgow-exts</option> flag is specified):
3049 <literal>Typeable</literal>, and <literal>Data</literal>.  These classes are defined in the library
3050 modules <literal>Data.Dynamic</literal> and <literal>Data.Generics</literal> respectively, and the
3051 appropriate class must be in scope before it can be mentioned in the <literal>deriving</literal> clause.
3052 </para>
3053 </sect2>
3054
3055 <sect2 id="newtype-deriving">
3056 <title>Generalised derived instances for newtypes</title>
3057
3058 <para>
3059 When you define an abstract type using <literal>newtype</literal>, you may want
3060 the new type to inherit some instances from its representation. In
3061 Haskell 98, you can inherit instances of <literal>Eq</literal>, <literal>Ord</literal>,
3062 <literal>Enum</literal> and <literal>Bounded</literal> by deriving them, but for any
3063 other classes you have to write an explicit instance declaration. For
3064 example, if you define
3065
3066 <programlisting> 
3067   newtype Dollars = Dollars Int 
3068 </programlisting> 
3069
3070 and you want to use arithmetic on <literal>Dollars</literal>, you have to
3071 explicitly define an instance of <literal>Num</literal>:
3072
3073 <programlisting> 
3074   instance Num Dollars where
3075     Dollars a + Dollars b = Dollars (a+b)
3076     ...
3077 </programlisting>
3078 All the instance does is apply and remove the <literal>newtype</literal>
3079 constructor. It is particularly galling that, since the constructor
3080 doesn't appear at run-time, this instance declaration defines a
3081 dictionary which is <emphasis>wholly equivalent</emphasis> to the <literal>Int</literal>
3082 dictionary, only slower!
3083 </para>
3084
3085
3086 <sect3> <title> Generalising the deriving clause </title>
3087 <para>
3088 GHC now permits such instances to be derived instead, so one can write 
3089 <programlisting> 
3090   newtype Dollars = Dollars Int deriving (Eq,Show,Num)
3091 </programlisting> 
3092
3093 and the implementation uses the <emphasis>same</emphasis> <literal>Num</literal> dictionary
3094 for <literal>Dollars</literal> as for <literal>Int</literal>. Notionally, the compiler
3095 derives an instance declaration of the form
3096
3097 <programlisting> 
3098   instance Num Int => Num Dollars
3099 </programlisting> 
3100
3101 which just adds or removes the <literal>newtype</literal> constructor according to the type.
3102 </para>
3103 <para>
3104
3105 We can also derive instances of constructor classes in a similar
3106 way. For example, suppose we have implemented state and failure monad
3107 transformers, such that
3108
3109 <programlisting> 
3110   instance Monad m => Monad (State s m) 
3111   instance Monad m => Monad (Failure m)
3112 </programlisting> 
3113 In Haskell 98, we can define a parsing monad by 
3114 <programlisting> 
3115   type Parser tok m a = State [tok] (Failure m) a
3116 </programlisting> 
3117
3118 which is automatically a monad thanks to the instance declarations
3119 above. With the extension, we can make the parser type abstract,
3120 without needing to write an instance of class <literal>Monad</literal>, via
3121
3122 <programlisting> 
3123   newtype Parser tok m a = Parser (State [tok] (Failure m) a)
3124                          deriving Monad
3125 </programlisting>
3126 In this case the derived instance declaration is of the form 
3127 <programlisting> 
3128   instance Monad (State [tok] (Failure m)) => Monad (Parser tok m) 
3129 </programlisting> 
3130
3131 Notice that, since <literal>Monad</literal> is a constructor class, the
3132 instance is a <emphasis>partial application</emphasis> of the new type, not the
3133 entire left hand side. We can imagine that the type declaration is
3134 ``eta-converted'' to generate the context of the instance
3135 declaration.
3136 </para>
3137 <para>
3138
3139 We can even derive instances of multi-parameter classes, provided the
3140 newtype is the last class parameter. In this case, a ``partial
3141 application'' of the class appears in the <literal>deriving</literal>
3142 clause. For example, given the class
3143
3144 <programlisting> 
3145   class StateMonad s m | m -> s where ... 
3146   instance Monad m => StateMonad s (State s m) where ... 
3147 </programlisting> 
3148 then we can derive an instance of <literal>StateMonad</literal> for <literal>Parser</literal>s by 
3149 <programlisting> 
3150   newtype Parser tok m a = Parser (State [tok] (Failure m) a)
3151                          deriving (Monad, StateMonad [tok])
3152 </programlisting>
3153
3154 The derived instance is obtained by completing the application of the
3155 class to the new type:
3156
3157 <programlisting> 
3158   instance StateMonad [tok] (State [tok] (Failure m)) =>
3159            StateMonad [tok] (Parser tok m)
3160 </programlisting>
3161 </para>
3162 <para>
3163
3164 As a result of this extension, all derived instances in newtype
3165 declarations are treated uniformly (and implemented just by reusing
3166 the dictionary for the representation type), <emphasis>except</emphasis>
3167 <literal>Show</literal> and <literal>Read</literal>, which really behave differently for
3168 the newtype and its representation.
3169 </para>
3170 </sect3>
3171
3172 <sect3> <title> A more precise specification </title>
3173 <para>
3174 Derived instance declarations are constructed as follows. Consider the
3175 declaration (after expansion of any type synonyms)
3176
3177 <programlisting> 
3178   newtype T v1...vn = T' (S t1...tk vk+1...vn) deriving (c1...cm) 
3179 </programlisting> 
3180
3181 where 
3182  <itemizedlist>
3183 <listitem><para>
3184   <literal>S</literal> is a type constructor, 
3185 </para></listitem>
3186 <listitem><para>
3187   The <literal>t1...tk</literal> are types,
3188 </para></listitem>
3189 <listitem><para>
3190   The <literal>vk+1...vn</literal> are type variables which do not occur in any of
3191   the <literal>ti</literal>, and
3192 </para></listitem>
3193 <listitem><para>
3194   The <literal>ci</literal> are partial applications of
3195   classes of the form <literal>C t1'...tj'</literal>, where the arity of <literal>C</literal>
3196   is exactly <literal>j+1</literal>.  That is, <literal>C</literal> lacks exactly one type argument.
3197 </para></listitem>
3198 <listitem><para>
3199   None of the <literal>ci</literal> is <literal>Read</literal>, <literal>Show</literal>, 
3200                 <literal>Typeable</literal>, or <literal>Data</literal>.  These classes
3201                 should not "look through" the type or its constructor.  You can still
3202                 derive these classes for a newtype, but it happens in the usual way, not 
3203                 via this new mechanism.  
3204 </para></listitem>
3205 </itemizedlist>
3206 Then, for each <literal>ci</literal>, the derived instance
3207 declaration is:
3208 <programlisting> 
3209   instance ci (S t1...tk vk+1...v) => ci (T v1...vp)
3210 </programlisting>
3211 where <literal>p</literal> is chosen so that <literal>T v1...vp</literal> is of the 
3212 right <emphasis>kind</emphasis> for the last parameter of class <literal>Ci</literal>.
3213 </para>
3214 <para>
3215
3216 As an example which does <emphasis>not</emphasis> work, consider 
3217 <programlisting> 
3218   newtype NonMonad m s = NonMonad (State s m s) deriving Monad 
3219 </programlisting> 
3220 Here we cannot derive the instance 
3221 <programlisting> 
3222   instance Monad (State s m) => Monad (NonMonad m) 
3223 </programlisting> 
3224
3225 because the type variable <literal>s</literal> occurs in <literal>State s m</literal>,
3226 and so cannot be "eta-converted" away. It is a good thing that this
3227 <literal>deriving</literal> clause is rejected, because <literal>NonMonad m</literal> is
3228 not, in fact, a monad --- for the same reason. Try defining
3229 <literal>>>=</literal> with the correct type: you won't be able to.
3230 </para>
3231 <para>
3232
3233 Notice also that the <emphasis>order</emphasis> of class parameters becomes
3234 important, since we can only derive instances for the last one. If the
3235 <literal>StateMonad</literal> class above were instead defined as
3236
3237 <programlisting> 
3238   class StateMonad m s | m -> s where ... 
3239 </programlisting>
3240
3241 then we would not have been able to derive an instance for the
3242 <literal>Parser</literal> type above. We hypothesise that multi-parameter
3243 classes usually have one "main" parameter for which deriving new
3244 instances is most interesting.
3245 </para>
3246 </sect3>
3247
3248 </sect2>
3249
3250
3251 </sect1>
3252 <!-- ==================== End of type system extensions =================  -->
3253   
3254 <!-- ====================== TEMPLATE HASKELL =======================  -->
3255
3256 <sect1 id="template-haskell">
3257 <title>Template Haskell</title>
3258
3259 <para>Template Haskell allows you to do compile-time meta-programming in Haskell.  There is a "home page" for
3260 Template Haskell at <ulink url="http://www.haskell.org/th/">
3261 http://www.haskell.org/th/</ulink>, while
3262 the background to
3263 the main technical innovations is discussed in "<ulink
3264 url="http://research.microsoft.com/~simonpj/papers/meta-haskell">
3265 Template Meta-programming for Haskell</ulink>" (Proc Haskell Workshop 2002).
3266 The details of the Template Haskell design are still in flux.  Make sure you
3267 consult the <ulink url="http://www.haskell.org/ghc/docs/latest/html/libraries/index.html">online library reference material</ulink> 
3268 (search for the type ExpQ).
3269 [Temporary: many changes to the original design are described in 
3270       <ulink url="http://research.microsoft.com/~simonpj/tmp/notes2.ps">"http://research.microsoft.com/~simonpj/tmp/notes2.ps"</ulink>.
3271 Not all of these changes are in GHC 6.2.]
3272 </para>
3273
3274 <para> The first example from that paper is set out below as a worked example to help get you started. 
3275 </para>
3276
3277 <para>
3278 The documentation here describes the realisation in GHC.  (It's rather sketchy just now;
3279 Tim Sheard is going to expand it.)
3280 </para>
3281
3282     <sect2>
3283       <title>Syntax</title>
3284
3285       <para> Template Haskell has the following new syntactic
3286       constructions.  You need to use the flag
3287       <option>-fth</option><indexterm><primary><option>-fth</option></primary>
3288       </indexterm>to switch these syntactic extensions on
3289       (<option>-fth</option> is currently implied by
3290       <option>-fglasgow-exts</option>, but you are encouraged to
3291       specify it explicitly).</para>
3292
3293         <itemizedlist>
3294               <listitem><para>
3295                   A splice is written <literal>$x</literal>, where <literal>x</literal> is an
3296                   identifier, or <literal>$(...)</literal>, where the "..." is an arbitrary expression.
3297                   There must be no space between the "$" and the identifier or parenthesis.  This use
3298                   of "$" overrides its meaning as an infix operator, just as "M.x" overrides the meaning
3299                   of "." as an infix operator.  If you want the infix operator, put spaces around it.
3300                   </para>
3301               <para> A splice can occur in place of 
3302                   <itemizedlist>
3303                     <listitem><para> an expression; the spliced expression must have type <literal>Expr</literal></para></listitem>
3304                     <listitem><para> a list of top-level declarations; ; the spliced expression must have type <literal>Q [Dec]</literal></para></listitem>
3305                     <listitem><para> a type; the spliced expression must have type <literal>Type</literal>.</para></listitem>
3306                     </itemizedlist>
3307            (Note that the syntax for a declaration splice uses "<literal>$</literal>" not "<literal>splice</literal>" as in
3308         the paper. Also the type of the enclosed expression must be  <literal>Q [Dec]</literal>, not  <literal>[Q Dec]</literal>
3309         as in the paper.)
3310                 </para></listitem>
3311
3312
3313               <listitem><para>
3314                   A expression quotation is written in Oxford brackets, thus:
3315                   <itemizedlist>
3316                     <listitem><para> <literal>[| ... |]</literal>, where the "..." is an expression; 
3317                              the quotation has type <literal>Expr</literal>.</para></listitem>
3318                     <listitem><para> <literal>[d| ... |]</literal>, where the "..." is a list of top-level declarations;
3319                              the quotation has type <literal>Q [Dec]</literal>.</para></listitem>
3320                     <listitem><para> <literal>[t| ... |]</literal>, where the "..." is a type; 
3321                              the quotation has type <literal>Type</literal>.</para></listitem>
3322                   </itemizedlist></para></listitem>
3323
3324               <listitem><para>
3325                   Reification is written thus:
3326                   <itemizedlist>
3327                     <listitem><para> <literal>reifyDecl T</literal>, where <literal>T</literal> is a type constructor; this expression
3328                       has type <literal>Dec</literal>. </para></listitem>
3329                     <listitem><para> <literal>reifyDecl C</literal>, where <literal>C</literal> is a class; has type <literal>Dec</literal>.</para></listitem>
3330                     <listitem><para> <literal>reifyType f</literal>, where <literal>f</literal> is an identifier; has type <literal>Typ</literal>.</para></listitem>
3331                     <listitem><para> Still to come: fixities </para></listitem>
3332                     
3333                   </itemizedlist></para>
3334                 </listitem>
3335
3336                   
3337         </itemizedlist>
3338 </sect2>
3339
3340 <sect2>  <title> Using Template Haskell </title>
3341 <para>
3342 <itemizedlist>
3343     <listitem><para>
3344     The data types and monadic constructor functions for Template Haskell are in the library
3345     <literal>Language.Haskell.THSyntax</literal>.
3346     </para></listitem>
3347
3348     <listitem><para>
3349     You can only run a function at compile time if it is imported from another module.  That is,
3350             you can't define a function in a module, and call it from within a splice in the same module.
3351             (It would make sense to do so, but it's hard to implement.)
3352    </para></listitem>
3353
3354     <listitem><para>
3355             The flag <literal>-ddump-splices</literal> shows the expansion of all top-level splices as they happen.
3356    </para></listitem>
3357     <listitem><para>
3358             If you are building GHC from source, you need at least a stage-2 bootstrap compiler to
3359               run Template Haskell.  A stage-1 compiler will reject the TH constructs.  Reason: TH
3360               compiles and runs a program, and then looks at the result.  So it's important that
3361               the program it compiles produces results whose representations are identical to
3362               those of the compiler itself.
3363    </para></listitem>
3364 </itemizedlist>
3365 </para>
3366 <para> Template Haskell works in any mode (<literal>--make</literal>, <literal>--interactive</literal>,
3367         or file-at-a-time).  There used to be a restriction to the former two, but that restriction 
3368         has been lifted.
3369 </para>
3370 </sect2>
3371  
3372 <sect2>  <title> A Template Haskell Worked Example </title>
3373 <para>To help you get over the confidence barrier, try out this skeletal worked example.
3374   First cut and paste the two modules below into "Main.hs" and "Printf.hs":</para>
3375
3376 <programlisting>
3377
3378 {- Main.hs -}
3379 module Main where
3380
3381 -- Import our template "pr"
3382 import Printf ( pr )
3383
3384 -- The splice operator $ takes the Haskell source code
3385 -- generated at compile time by "pr" and splices it into
3386 -- the argument of "putStrLn".
3387 main = putStrLn ( $(pr "Hello") )
3388
3389
3390 {- Printf.hs -}
3391 module Printf where
3392
3393 -- Skeletal printf from the paper.
3394 -- It needs to be in a separate module to the one where
3395 -- you intend to use it.
3396
3397 -- Import some Template Haskell syntax
3398 import Language.Haskell.TH.Syntax
3399
3400 -- Describe a format string
3401 data Format = D | S | L String
3402
3403 -- Parse a format string.  This is left largely to you
3404 -- as we are here interested in building our first ever
3405 -- Template Haskell program and not in building printf.
3406 parse :: String -> [Format]
3407 parse s   = [ L s ]
3408
3409 -- Generate Haskell source code from a parsed representation
3410 -- of the format string.  This code will be spliced into
3411 -- the module which calls "pr", at compile time.
3412 gen :: [Format] -> ExpQ
3413 gen [D]   = [| \n -> show n |]
3414 gen [S]   = [| \s -> s |]
3415 gen [L s] = stringE s
3416
3417 -- Here we generate the Haskell code for the splice
3418 -- from an input format string.
3419 pr :: String -> ExpQ
3420 pr s      = gen (parse s)
3421 </programlisting>
3422
3423 <para>Now run the compiler (here we are a Cygwin prompt on Windows):
3424 </para>
3425 <programlisting>
3426 $ ghc --make -fth main.hs -o main.exe
3427 </programlisting>
3428
3429 <para>Run "main.exe" and here is your output:</para>
3430
3431 <programlisting>
3432 $ ./main
3433 Hello
3434 </programlisting>
3435
3436 </sect2>
3437  
3438 </sect1>
3439
3440 <!-- ===================== Arrow notation ===================  -->
3441
3442 <sect1 id="arrow-notation">
3443 <title>Arrow notation
3444 </title>
3445
3446 <para>Arrows are a generalization of monads introduced by John Hughes.
3447 For more details, see
3448 <itemizedlist>
3449
3450 <listitem>
3451 <para>
3452 &ldquo;Generalising Monads to Arrows&rdquo;,
3453 John Hughes, in <citetitle>Science of Computer Programming</citetitle> 37,
3454 pp67&ndash;111, May 2000.
3455 </para>
3456 </listitem>
3457
3458 <listitem>
3459 <para>
3460 &ldquo;<ulink url="http://www.soi.city.ac.uk/~ross/papers/notation.html">A New Notation for Arrows</ulink>&rdquo;,
3461 Ross Paterson, in <citetitle>ICFP</citetitle>, Sep 2001.
3462 </para>
3463 </listitem>
3464
3465 <listitem>
3466 <para>
3467 &ldquo;<ulink url="http://www.soi.city.ac.uk/~ross/papers/fop.html">Arrows and Computation</ulink>&rdquo;,
3468 Ross Paterson, in <citetitle>The Fun of Programming</citetitle>,
3469 Palgrave, 2003.
3470 </para>
3471 </listitem>
3472
3473 </itemizedlist>
3474 and the arrows web page at
3475 <ulink url="http://www.haskell.org/arrows/"><literal>http://www.haskell.org/arrows/</literal></ulink>.
3476 With the <option>-farrows</option> flag, GHC supports the arrow
3477 notation described in the second of these papers.
3478 What follows is a brief introduction to the notation;
3479 it won't make much sense unless you've read Hughes's paper.
3480 This notation is translated to ordinary Haskell,
3481 using combinators from the
3482 <ulink url="../libraries/base/Control.Arrow.html"><literal>Control.Arrow</literal></ulink>
3483 module.
3484 </para>
3485
3486 <para>The extension adds a new kind of expression for defining arrows:
3487 <screen>
3488 <replaceable>exp</replaceable><superscript>10</superscript> ::= ...
3489        |  proc <replaceable>apat</replaceable> -> <replaceable>cmd</replaceable>
3490 </screen>
3491 where <literal>proc</literal> is a new keyword.
3492 The variables of the pattern are bound in the body of the 
3493 <literal>proc</literal>-expression,
3494 which is a new sort of thing called a <firstterm>command</firstterm>.
3495 The syntax of commands is as follows:
3496 <screen>
3497 <replaceable>cmd</replaceable>   ::= <replaceable>exp</replaceable><superscript>10</superscript> -&lt;  <replaceable>exp</replaceable>
3498        |  <replaceable>exp</replaceable><superscript>10</superscript> -&lt;&lt; <replaceable>exp</replaceable>
3499        |  <replaceable>cmd</replaceable><superscript>0</superscript>
3500 </screen>
3501 with <replaceable>cmd</replaceable><superscript>0</superscript> up to
3502 <replaceable>cmd</replaceable><superscript>9</superscript> defined using
3503 infix operators as for expressions, and
3504 <screen>
3505 <replaceable>cmd</replaceable><superscript>10</superscript> ::= \ <replaceable>apat</replaceable> ... <replaceable>apat</replaceable> -> <replaceable>cmd</replaceable>
3506        |  let <replaceable>decls</replaceable> in <replaceable>cmd</replaceable>
3507        |  if <replaceable>exp</replaceable> then <replaceable>cmd</replaceable> else <replaceable>cmd</replaceable>
3508        |  case <replaceable>exp</replaceable> of { <replaceable>calts</replaceable> }
3509        |  do { <replaceable>cstmt</replaceable> ; ... <replaceable>cstmt</replaceable> ; <replaceable>cmd</replaceable> }
3510        |  <replaceable>fcmd</replaceable>
3511
3512 <replaceable>fcmd</replaceable>  ::= <replaceable>fcmd</replaceable> <replaceable>aexp</replaceable>
3513        |  ( <replaceable>cmd</replaceable> )
3514        |  (| <replaceable>aexp</replaceable> <replaceable>cmd</replaceable> ... <replaceable>cmd</replaceable> |)
3515
3516 <replaceable>cstmt</replaceable> ::= let <replaceable>decls</replaceable>
3517        |  <replaceable>pat</replaceable> &lt;- <replaceable>cmd</replaceable>
3518        |  rec { <replaceable>cstmt</replaceable> ; ... <replaceable>cstmt</replaceable> [;] }
3519        |  <replaceable>cmd</replaceable>
3520 </screen>
3521 where <replaceable>calts</replaceable> are like <replaceable>alts</replaceable>
3522 except that the bodies are commands instead of expressions.
3523 </para>
3524
3525 <para>
3526 Commands produce values, but (like monadic computations)
3527 may yield more than one value,
3528 or none, and may do other things as well.
3529 For the most part, familiarity with monadic notation is a good guide to
3530 using commands.
3531 However the values of expressions, even monadic ones,
3532 are determined by the values of the variables they contain;
3533 this is not necessarily the case for commands.
3534 </para>
3535
3536 <para>
3537 A simple example of the new notation is the expression
3538 <screen>
3539 proc x -> f -&lt; x+1
3540 </screen>
3541 We call this a <firstterm>procedure</firstterm> or
3542 <firstterm>arrow abstraction</firstterm>.
3543 As with a lambda expression, the variable <literal>x</literal>
3544 is a new variable bound within the <literal>proc</literal>-expression.
3545 It refers to the input to the arrow.
3546 In the above example, <literal>-&lt;</literal> is not an identifier but an
3547 new reserved symbol used for building commands from an expression of arrow
3548 type and an expression to be fed as input to that arrow.
3549 (The weird look will make more sense later.)
3550 It may be read as analogue of application for arrows.
3551 The above example is equivalent to the Haskell expression
3552 <screen>
3553 arr (\ x -> x+1) >>> f
3554 </screen>
3555 That would make no sense if the expression to the left of
3556 <literal>-&lt;</literal> involves the bound variable <literal>x</literal>.
3557 More generally, the expression to the left of <literal>-&lt;</literal>
3558 may not involve any <firstterm>local variable</firstterm>,
3559 i.e. a variable bound in the current arrow abstraction.
3560 For such a situation there is a variant <literal>-&lt;&lt;</literal>, as in
3561 <screen>
3562 proc x -> f x -&lt;&lt; x+1
3563 </screen>
3564 which is equivalent to
3565 <screen>
3566 arr (\ x -> (f, x+1)) >>> app
3567 </screen>
3568 so in this case the arrow must belong to the <literal>ArrowApply</literal>
3569 class.
3570 Such an arrow is equivalent to a monad, so if you're using this form
3571 you may find a monadic formulation more convenient.
3572 </para>
3573
3574 <sect2>
3575 <title>do-notation for commands</title>
3576
3577 <para>
3578 Another form of command is a form of <literal>do</literal>-notation.
3579 For example, you can write
3580 <screen>
3581 proc x -> do
3582         y &lt;- f -&lt; x+1
3583         g -&lt; 2*y
3584         let z = x+y
3585         t &lt;- h -&lt; x*z
3586         returnA -&lt; t+z
3587 </screen>
3588 You can read this much like ordinary <literal>do</literal>-notation,
3589 but with commands in place of monadic expressions.
3590 The first line sends the value of <literal>x+1</literal> as an input to
3591 the arrow <literal>f</literal>, and matches its output against
3592 <literal>y</literal>.
3593 In the next line, the output is discarded.
3594 The arrow <literal>returnA</literal> is defined in the
3595 <ulink url="../base/Control.Arrow.html"><literal>Control.Arrow</literal></ulink>
3596 module as <literal>arr id</literal>.
3597 The above example is treated as an abbreviation for
3598 <screen>
3599 arr (\ x -> (x, x)) >>>
3600         first (arr (\ x -> x+1) >>> f) >>>
3601         arr (\ (y, x) -> (y, (x, y))) >>>
3602         first (arr (\ y -> 2*y) >>> g) >>>
3603         arr snd >>>
3604         arr (\ (x, y) -> let z = x+y in ((x, z), z)) >>>
3605         first (arr (\ (x, z) -> x*z) >>> h) >>>
3606         arr (\ (t, z) -> t+z) >>>
3607         returnA
3608 </screen>
3609 Note that variables not used later in the composition are projected out.
3610 After simplification using rewrite rules (see <xref linkend="rewrite-rules"/>)
3611 defined in the
3612 <ulink url="../base/Control.Arrow.html"><literal>Control.Arrow</literal></ulink>
3613 module, this reduces to
3614 <screen>
3615 arr (\ x -> (x+1, x)) >>>
3616         first f >>>
3617         arr (\ (y, x) -> (2*y, (x, y))) >>>
3618         first g >>>
3619         arr (\ (_, (x, y)) -> let z = x+y in (x*z, z)) >>>
3620         first h >>>
3621         arr (\ (t, z) -> t+z)
3622 </screen>
3623 which is what you might have written by hand.
3624 With arrow notation, GHC keeps track of all those tuples of variables for you.
3625 </para>
3626
3627 <para>
3628 Note that although the above translation suggests that
3629 <literal>let</literal>-bound variables like <literal>z</literal> must be
3630 monomorphic, the actual translation produces Core,
3631 so polymorphic variables are allowed.
3632 </para>
3633
3634 <para>
3635 It's also possible to have mutually recursive bindings,
3636 using the new <literal>rec</literal> keyword, as in the following example:
3637 <screen>
3638 counter :: ArrowCircuit a => a Bool Int
3639 counter = proc reset -> do
3640         rec     output &lt;- returnA -&lt; if reset then 0 else next
3641                 next &lt;- delay 0 -&lt; output+1
3642         returnA -&lt; output
3643 </screen>
3644 The translation of such forms uses the <literal>loop</literal> combinator,
3645 so the arrow concerned must belong to the <literal>ArrowLoop</literal> class.
3646 </para>
3647
3648 </sect2>
3649
3650 <sect2>
3651 <title>Conditional commands</title>
3652
3653 <para>
3654 In the previous example, we used a conditional expression to construct the
3655 input for an arrow.
3656 Sometimes we want to conditionally execute different commands, as in
3657 <screen>
3658 proc (x,y) ->
3659         if f x y
3660         then g -&lt; x+1
3661         else h -&lt; y+2
3662 </screen>
3663 which is translated to
3664 <screen>
3665 arr (\ (x,y) -> if f x y then Left x else Right y) >>>
3666         (arr (\x -> x+1) >>> f) ||| (arr (\y -> y+2) >>> g)
3667 </screen>
3668 Since the translation uses <literal>|||</literal>,
3669 the arrow concerned must belong to the <literal>ArrowChoice</literal> class.
3670 </para>
3671
3672 <para>
3673 There are also <literal>case</literal> commands, like
3674 <screen>
3675 case input of
3676     [] -> f -&lt; ()
3677     [x] -> g -&lt; x+1
3678     x1:x2:xs -> do
3679         y &lt;- h -&lt; (x1, x2)
3680         ys &lt;- k -&lt; xs
3681         returnA -&lt; y:ys
3682 </screen>
3683 The syntax is the same as for <literal>case</literal> expressions,
3684 except that the bodies of the alternatives are commands rather than expressions.
3685 The translation is similar to that of <literal>if</literal> commands.
3686 </para>
3687
3688 </sect2>
3689
3690 <sect2>
3691 <title>Defining your own control structures</title>
3692
3693 <para>
3694 As we're seen, arrow notation provides constructs,
3695 modelled on those for expressions,
3696 for sequencing, value recursion and conditionals.
3697 But suitable combinators,
3698 which you can define in ordinary Haskell,
3699 may also be used to build new commands out of existing ones.
3700 The basic idea is that a command defines an arrow from environments to values.
3701 These environments assign values to the free local variables of the command.
3702 Thus combinators that produce arrows from arrows
3703 may also be used to build commands from commands.
3704 For example, the <literal>ArrowChoice</literal> class includes a combinator
3705 <programlisting>
3706 ArrowChoice a => (&lt;+>) :: a e c -> a e c -> a e c
3707 </programlisting>
3708 so we can use it to build commands:
3709 <programlisting>
3710 expr' = proc x -> do
3711                 returnA -&lt; x
3712         &lt;+> do
3713                 symbol Plus -&lt; ()
3714                 y &lt;- term -&lt; ()
3715                 expr' -&lt; x + y
3716         &lt;+> do
3717                 symbol Minus -&lt; ()
3718                 y &lt;- term -&lt; ()
3719                 expr' -&lt; x - y
3720 </programlisting>
3721 (The <literal>do</literal> on the first line is needed to prevent the first
3722 <literal>&lt;+> ...</literal> from being interpreted as part of the
3723 expression on the previous line.)
3724 This is equivalent to
3725 <programlisting>
3726 expr' = (proc x -> returnA -&lt; x)
3727         &lt;+> (proc x -> do
3728                 symbol Plus -&lt; ()
3729                 y &lt;- term -&lt; ()
3730                 expr' -&lt; x + y)
3731         &lt;+> (proc x -> do
3732                 symbol Minus -&lt; ()
3733                 y &lt;- term -&lt; ()
3734                 expr' -&lt; x - y)
3735 </programlisting>
3736 It is essential that this operator be polymorphic in <literal>e</literal>
3737 (representing the environment input to the command
3738 and thence to its subcommands)
3739 and satisfy the corresponding naturality property
3740 <screen>
3741 arr k >>> (f &lt;+> g) = (arr k >>> f) &lt;+> (arr k >>> g)
3742 </screen>
3743 at least for strict <literal>k</literal>.
3744 (This should be automatic if you're not using <literal>seq</literal>.)
3745 This ensures that environments seen by the subcommands are environments
3746 of the whole command,
3747 and also allows the translation to safely trim these environments.
3748 The operator must also not use any variable defined within the current
3749 arrow abstraction.
3750 </para>
3751
3752 <para>
3753 We could define our own operator
3754 <programlisting>
3755 untilA :: ArrowChoice a => a e () -> a e Bool -> a e ()
3756 untilA body cond = proc x ->
3757         if cond x then returnA -&lt; ()
3758         else do
3759                 body -&lt; x
3760                 untilA body cond -&lt; x
3761 </programlisting>
3762 and use it in the same way.
3763 Of course this infix syntax only makes sense for binary operators;
3764 there is also a more general syntax involving special brackets:
3765 <screen>
3766 proc x -> do
3767         y &lt;- f -&lt; x+1
3768         (|untilA (increment -&lt; x+y) (within 0.5 -&lt; x)|)
3769 </screen>
3770 </para>
3771
3772 </sect2>
3773
3774 <sect2>
3775 <title>Primitive constructs</title>
3776
3777 <para>
3778 Some operators will need to pass additional inputs to their subcommands.
3779 For example, in an arrow type supporting exceptions,
3780 the operator that attaches an exception handler will wish to pass the
3781 exception that occurred to the handler.
3782 Such an operator might have a type
3783 <screen>
3784 handleA :: ... => a e c -> a (e,Ex) c -> a e c
3785 </screen>
3786 where <literal>Ex</literal> is the type of exceptions handled.
3787 You could then use this with arrow notation by writing a command
3788 <screen>
3789 body `handleA` \ ex -> handler
3790 </screen>
3791 so that if an exception is raised in the command <literal>body</literal>,
3792 the variable <literal>ex</literal> is bound to the value of the exception
3793 and the command <literal>handler</literal>,
3794 which typically refers to <literal>ex</literal>, is entered.
3795 Though the syntax here looks like a functional lambda,
3796 we are talking about commands, and something different is going on.
3797 The input to the arrow represented by a command consists of values for
3798 the free local variables in the command, plus a stack of anonymous values.
3799 In all the prior examples, this stack was empty.
3800 In the second argument to <literal>handleA</literal>,
3801 this stack consists of one value, the value of the exception.
3802 The command form of lambda merely gives this value a name.
3803 </para>
3804
3805 <para>
3806 More concretely,
3807 the values on the stack are paired to the right of the environment.
3808 So when designing operators like <literal>handleA</literal> that pass
3809 extra inputs to their subcommands,
3810 More precisely, the type of each argument of the operator (and its result)
3811 should have the form
3812 <screen>
3813 a (...(e,t1), ... tn) t
3814 </screen>
3815 where <replaceable>e</replaceable> is a polymorphic variable
3816 (representing the environment)
3817 and <replaceable>ti</replaceable> are the types of the values on the stack,
3818 with <replaceable>t1</replaceable> being the <quote>top</quote>.
3819 The polymorphic variable <replaceable>e</replaceable> must not occur in
3820 <replaceable>a</replaceable>, <replaceable>ti</replaceable> or
3821 <replaceable>t</replaceable>.
3822 However the arrows involved need not be the same.
3823 Here are some more examples of suitable operators:
3824 <screen>
3825 bracketA :: ... => a e b -> a (e,b) c -> a (e,c) d -> a e d
3826 runReader :: ... => a e c -> a' (e,State) c
3827 runState :: ... => a e c -> a' (e,State) (c,State)
3828 </screen>
3829 We can supply the extra input required by commands built with the last two
3830 by applying them to ordinary expressions, as in
3831 <screen>
3832 proc x -> do
3833         s &lt;- ...
3834         (|runReader (do { ... })|) s
3835 </screen>
3836 which adds <literal>s</literal> to the stack of inputs to the command
3837 built using <literal>runReader</literal>.
3838 </para>
3839
3840 <para>
3841 The command versions of lambda abstraction and application are analogous to
3842 the expression versions.
3843 In particular, the beta and eta rules describe equivalences of commands.
3844 These three features (operators, lambda abstraction and application)
3845 are the core of the notation; everything else can be built using them,
3846 though the results would be somewhat clumsy.
3847 For example, we could simulate <literal>do</literal>-notation by defining
3848 <programlisting>
3849 bind :: Arrow a => a e b -> a (e,b) c -> a e c
3850 u `bind` f = returnA &amp;&amp;&amp; u >>> f
3851
3852 bind_ :: Arrow a => a e b -> a e c -> a e c
3853 u `bind_` f = u `bind` (arr fst >>> f)
3854 </programlisting>
3855 We could simulate <literal>do</literal> by defining
3856 <programlisting>
3857 cond :: ArrowChoice a => a e b -> a e b -> a (e,Bool) b
3858 cond f g = arr (\ (e,b) -> if b then Left e else Right e) >>> f ||| g
3859 </programlisting>
3860 </para>
3861
3862 </sect2>
3863
3864 <sect2>
3865 <title>Differences with the paper</title>
3866
3867 <itemizedlist>
3868
3869 <listitem>
3870 <para>Instead of a single form of arrow application (arrow tail) with two
3871 translations, the implementation provides two forms
3872 <quote><literal>-&lt;</literal></quote> (first-order)
3873 and <quote><literal>-&lt;&lt;</literal></quote> (higher-order).
3874 </para>
3875 </listitem>
3876
3877 <listitem>
3878 <para>User-defined operators are flagged with banana brackets instead of
3879 a new <literal>form</literal> keyword.
3880 </para>
3881 </listitem>
3882
3883 </itemizedlist>
3884
3885 </sect2>
3886
3887 <sect2>
3888 <title>Portability</title>
3889
3890 <para>
3891 Although only GHC implements arrow notation directly,
3892 there is also a preprocessor
3893 (available from the 
3894 <ulink url="http://www.haskell.org/arrows/">arrows web page</ulink>)
3895 that translates arrow notation into Haskell 98
3896 for use with other Haskell systems.
3897 You would still want to check arrow programs with GHC;
3898 tracing type errors in the preprocessor output is not easy.
3899 Modules intended for both GHC and the preprocessor must observe some
3900 additional restrictions:
3901 <itemizedlist>
3902
3903 <listitem>
3904 <para>
3905 The module must import
3906 <ulink url="../base/Control.Arrow.html"><literal>Control.Arrow</literal></ulink>.
3907 </para>
3908 </listitem>
3909
3910 <listitem>
3911 <para>
3912 The preprocessor cannot cope with other Haskell extensions.
3913 These would have to go in separate modules.
3914 </para>
3915 </listitem>
3916
3917 <listitem>
3918 <para>
3919 Because the preprocessor targets Haskell (rather than Core),
3920 <literal>let</literal>-bound variables are monomorphic.
3921 </para>
3922 </listitem>
3923
3924 </itemizedlist>
3925 </para>
3926
3927 </sect2>
3928
3929 </sect1>
3930
3931 <!-- ==================== ASSERTIONS =================  -->
3932
3933 <sect1 id="sec-assertions">
3934 <title>Assertions
3935 <indexterm><primary>Assertions</primary></indexterm>
3936 </title>
3937
3938 <para>
3939 If you want to make use of assertions in your standard Haskell code, you
3940 could define a function like the following:
3941 </para>
3942
3943 <para>
3944
3945 <programlisting>
3946 assert :: Bool -> a -> a
3947 assert False x = error "assertion failed!"
3948 assert _     x = x
3949 </programlisting>
3950
3951 </para>
3952
3953 <para>
3954 which works, but gives you back a less than useful error message --
3955 an assertion failed, but which and where?
3956 </para>
3957
3958 <para>
3959 One way out is to define an extended <function>assert</function> function which also
3960 takes a descriptive string to include in the error message and
3961 perhaps combine this with the use of a pre-processor which inserts
3962 the source location where <function>assert</function> was used.
3963 </para>
3964
3965 <para>
3966 Ghc offers a helping hand here, doing all of this for you. For every
3967 use of <function>assert</function> in the user's source:
3968 </para>
3969
3970 <para>
3971
3972 <programlisting>
3973 kelvinToC :: Double -> Double
3974 kelvinToC k = assert (k &gt;= 0.0) (k+273.15)
3975 </programlisting>
3976
3977 </para>
3978
3979 <para>
3980 Ghc will rewrite this to also include the source location where the
3981 assertion was made,
3982 </para>
3983
3984 <para>
3985
3986 <programlisting>
3987 assert pred val ==> assertError "Main.hs|15" pred val
3988 </programlisting>
3989
3990 </para>
3991
3992 <para>
3993 The rewrite is only performed by the compiler when it spots
3994 applications of <function>Control.Exception.assert</function>, so you
3995 can still define and use your own versions of
3996 <function>assert</function>, should you so wish. If not, import
3997 <literal>Control.Exception</literal> to make use
3998 <function>assert</function> in your code.
3999 </para>
4000
4001 <para>
4002 To have the compiler ignore uses of assert, use the compiler option
4003 <option>-fignore-asserts</option>. <indexterm><primary>-fignore-asserts
4004 option</primary></indexterm> That is, expressions of the form
4005 <literal>assert pred e</literal> will be rewritten to
4006 <literal>e</literal>.
4007 </para>
4008
4009 <para>
4010 Assertion failures can be caught, see the documentation for the
4011 <literal>Control.Exception</literal> library for the details.
4012 </para>
4013
4014 </sect1>
4015
4016
4017 <!-- =============================== PRAGMAS ===========================  -->
4018
4019   <sect1 id="pragmas">
4020     <title>Pragmas</title>
4021
4022     <indexterm><primary>pragma</primary></indexterm>
4023
4024     <para>GHC supports several pragmas, or instructions to the
4025     compiler placed in the source code.  Pragmas don't normally affect
4026     the meaning of the program, but they might affect the efficiency
4027     of the generated code.</para>
4028
4029     <para>Pragmas all take the form
4030
4031 <literal>{-# <replaceable>word</replaceable> ... #-}</literal>  
4032
4033     where <replaceable>word</replaceable> indicates the type of
4034     pragma, and is followed optionally by information specific to that
4035     type of pragma.  Case is ignored in
4036     <replaceable>word</replaceable>.  The various values for
4037     <replaceable>word</replaceable> that GHC understands are described
4038     in the following sections; any pragma encountered with an
4039     unrecognised <replaceable>word</replaceable> is (silently)
4040     ignored.</para>
4041
4042     <sect2 id="deprecated-pragma">
4043       <title>DEPRECATED pragma</title>
4044       <indexterm><primary>DEPRECATED</primary>
4045       </indexterm>
4046
4047       <para>The DEPRECATED pragma lets you specify that a particular
4048       function, class, or type, is deprecated.  There are two
4049       forms.
4050
4051       <itemizedlist>
4052         <listitem>
4053           <para>You can deprecate an entire module thus:</para>
4054 <programlisting>
4055    module Wibble {-# DEPRECATED "Use Wobble instead" #-} where
4056      ...
4057 </programlisting>
4058           <para>When you compile any module that import
4059           <literal>Wibble</literal>, GHC will print the specified
4060           message.</para>
4061         </listitem>
4062
4063         <listitem>
4064           <para>You can deprecate a function, class, or type, with the
4065           following top-level declaration:</para>
4066 <programlisting>
4067    {-# DEPRECATED f, C, T "Don't use these" #-}
4068 </programlisting>
4069           <para>When you compile any module that imports and uses any
4070           of the specifed entities, GHC will print the specified
4071           message.</para>
4072         </listitem>
4073       </itemizedlist>
4074       Any use of the deprecated item, or of anything from a deprecated
4075       module, will be flagged with an appropriate message.  However,
4076       deprecations are not reported for
4077       (a) uses of a deprecated function within its defining module, and
4078       (b) uses of a deprecated function in an export list.
4079       The latter reduces spurious complaints within a library
4080       in which one module gathers together and re-exports 
4081       the exports of several others.
4082       </para>
4083       <para>You can suppress the warnings with the flag
4084       <option>-fno-warn-deprecations</option>.</para>
4085     </sect2>
4086
4087     <sect2 id="inline-noinline-pragma">
4088       <title>INLINE and NOINLINE pragmas</title>
4089
4090       <para>These pragmas control the inlining of function
4091       definitions.</para>
4092
4093       <sect3 id="inline-pragma">
4094         <title>INLINE pragma</title>
4095         <indexterm><primary>INLINE</primary></indexterm>
4096
4097         <para>GHC (with <option>-O</option>, as always) tries to
4098         inline (or &ldquo;unfold&rdquo;) functions/values that are
4099         &ldquo;small enough,&rdquo; thus avoiding the call overhead
4100         and possibly exposing other more-wonderful optimisations.
4101         Normally, if GHC decides a function is &ldquo;too
4102         expensive&rdquo; to inline, it will not do so, nor will it
4103         export that unfolding for other modules to use.</para>
4104
4105         <para>The sledgehammer you can bring to bear is the
4106         <literal>INLINE</literal><indexterm><primary>INLINE
4107         pragma</primary></indexterm> pragma, used thusly:</para>
4108
4109 <programlisting>
4110 key_function :: Int -> String -> (Bool, Double)
4111
4112 #ifdef __GLASGOW_HASKELL__
4113 {-# INLINE key_function #-}
4114 #endif
4115 </programlisting>
4116
4117         <para>(You don't need to do the C pre-processor carry-on
4118         unless you're going to stick the code through HBC&mdash;it
4119         doesn't like <literal>INLINE</literal> pragmas.)</para>
4120
4121         <para>The major effect of an <literal>INLINE</literal> pragma
4122         is to declare a function's &ldquo;cost&rdquo; to be very low.
4123         The normal unfolding machinery will then be very keen to
4124         inline it.</para>
4125
4126         <para>Syntactially, an <literal>INLINE</literal> pragma for a
4127         function can be put anywhere its type signature could be
4128         put.</para>
4129
4130         <para><literal>INLINE</literal> pragmas are a particularly
4131         good idea for the
4132         <literal>then</literal>/<literal>return</literal> (or
4133         <literal>bind</literal>/<literal>unit</literal>) functions in
4134         a monad.  For example, in GHC's own
4135         <literal>UniqueSupply</literal> monad code, we have:</para>
4136
4137 <programlisting>
4138 #ifdef __GLASGOW_HASKELL__
4139 {-# INLINE thenUs #-}
4140 {-# INLINE returnUs #-}
4141 #endif
4142 </programlisting>
4143
4144         <para>See also the <literal>NOINLINE</literal> pragma (<xref
4145         linkend="noinline-pragma"/>).</para>
4146       </sect3>
4147
4148       <sect3 id="noinline-pragma">
4149         <title>NOINLINE pragma</title>
4150         
4151         <indexterm><primary>NOINLINE</primary></indexterm>
4152         <indexterm><primary>NOTINLINE</primary></indexterm>
4153
4154         <para>The <literal>NOINLINE</literal> pragma does exactly what
4155         you'd expect: it stops the named function from being inlined
4156         by the compiler.  You shouldn't ever need to do this, unless
4157         you're very cautious about code size.</para>
4158
4159         <para><literal>NOTINLINE</literal> is a synonym for
4160         <literal>NOINLINE</literal> (<literal>NOTINLINE</literal> is
4161         specified by Haskell 98 as the standard way to disable
4162         inlining, so it should be used if you want your code to be
4163         portable).</para>
4164       </sect3>
4165
4166       <sect3 id="phase-control">
4167         <title>Phase control</title>
4168
4169         <para> Sometimes you want to control exactly when in GHC's
4170         pipeline the INLINE pragma is switched on.  Inlining happens
4171         only during runs of the <emphasis>simplifier</emphasis>.  Each
4172         run of the simplifier has a different <emphasis>phase
4173         number</emphasis>; the phase number decreases towards zero.
4174         If you use <option>-dverbose-core2core</option> you'll see the
4175         sequence of phase numbers for successive runs of the
4176         simpifier.  In an INLINE pragma you can optionally specify a
4177         phase number, thus:</para>
4178
4179         <itemizedlist>
4180           <listitem>
4181             <para>You can say "inline <literal>f</literal> in Phase 2
4182             and all subsequent phases":
4183 <programlisting>
4184   {-# INLINE [2] f #-}
4185 </programlisting>
4186             </para>
4187           </listitem>
4188
4189           <listitem>
4190             <para>You can say "inline <literal>g</literal> in all
4191             phases up to, but not including, Phase 3":
4192 <programlisting>
4193   {-# INLINE [~3] g #-}
4194 </programlisting>
4195             </para>
4196           </listitem>
4197
4198           <listitem>
4199             <para>If you omit the phase indicator, you mean "inline in
4200             all phases".</para>
4201           </listitem>
4202         </itemizedlist>
4203
4204         <para>You can use a phase number on a NOINLINE pragma too:</para>
4205
4206         <itemizedlist>
4207           <listitem>
4208             <para>You can say "do not inline <literal>f</literal>
4209             until Phase 2; in Phase 2 and subsequently behave as if
4210             there was no pragma at all":
4211 <programlisting>
4212   {-# NOINLINE [2] f #-}
4213 </programlisting>
4214             </para>
4215           </listitem>
4216
4217           <listitem>
4218             <para>You can say "do not inline <literal>g</literal> in
4219             Phase 3 or any subsequent phase; before that, behave as if
4220             there was no pragma":
4221 <programlisting>
4222   {-# NOINLINE [~3] g #-}
4223 </programlisting>
4224             </para>
4225           </listitem>
4226
4227           <listitem>
4228             <para>If you omit the phase indicator, you mean "never
4229             inline this function".</para>
4230           </listitem>
4231         </itemizedlist>
4232
4233         <para>The same phase-numbering control is available for RULES
4234         (<xref linkend="rewrite-rules"/>).</para>
4235       </sect3>
4236     </sect2>
4237
4238     <sect2 id="line-pragma">
4239       <title>LINE pragma</title>
4240
4241       <indexterm><primary>LINE</primary><secondary>pragma</secondary></indexterm>
4242       <indexterm><primary>pragma</primary><secondary>LINE</secondary></indexterm>
4243       <para>This pragma is similar to C's <literal>&num;line</literal>
4244       pragma, and is mainly for use in automatically generated Haskell
4245       code.  It lets you specify the line number and filename of the
4246       original code; for example</para>
4247
4248 <programlisting>
4249 {-# LINE 42 "Foo.vhs" #-}
4250 </programlisting>
4251
4252       <para>if you'd generated the current file from something called
4253       <filename>Foo.vhs</filename> and this line corresponds to line
4254       42 in the original.  GHC will adjust its error messages to refer
4255       to the line/file named in the <literal>LINE</literal>
4256       pragma.</para>
4257     </sect2>
4258
4259     <sect2 id="options-pragma">
4260       <title>OPTIONS pragma</title>
4261       <indexterm><primary>OPTIONS</primary>
4262       </indexterm>
4263       <indexterm><primary>pragma</primary><secondary>OPTIONS</secondary>
4264       </indexterm>
4265
4266       <para>The <literal>OPTIONS</literal> pragma is used to specify
4267       additional options that are given to the compiler when compiling
4268       this source file.  See <xref linkend="source-file-options"/> for
4269       details.</para>
4270     </sect2>
4271
4272     <sect2 id="rules">
4273       <title>RULES pragma</title>
4274
4275       <para>The RULES pragma lets you specify rewrite rules.  It is
4276       described in <xref linkend="rewrite-rules"/>.</para>
4277     </sect2>
4278
4279     <sect2 id="specialize-pragma">
4280       <title>SPECIALIZE pragma</title>
4281
4282       <indexterm><primary>SPECIALIZE pragma</primary></indexterm>
4283       <indexterm><primary>pragma, SPECIALIZE</primary></indexterm>
4284       <indexterm><primary>overloading, death to</primary></indexterm>
4285
4286       <para>(UK spelling also accepted.)  For key overloaded
4287       functions, you can create extra versions (NB: more code space)
4288       specialised to particular types.  Thus, if you have an
4289       overloaded function:</para>
4290
4291 <programlisting>
4292 hammeredLookup :: Ord key => [(key, value)] -> key -> value
4293 </programlisting>
4294
4295       <para>If it is heavily used on lists with
4296       <literal>Widget</literal> keys, you could specialise it as
4297       follows:</para>
4298
4299 <programlisting>
4300 {-# SPECIALIZE hammeredLookup :: [(Widget, value)] -> Widget -> value #-}
4301 </programlisting>
4302
4303       <para>A <literal>SPECIALIZE</literal> pragma for a function can
4304       be put anywhere its type signature could be put.</para>
4305
4306       <para>A <literal>SPECIALIZE</literal> has the effect of generating
4307       (a) a specialised version of the function and (b) a rewrite rule
4308       (see <xref linkend="rewrite-rules"/>) that rewrites a call to the
4309       un-specialised function into a call to the specialised one.</para>
4310
4311       <para>In earlier versions of GHC, it was possible to provide your own
4312       specialised function for a given type:
4313
4314 <programlisting>
4315 {-# SPECIALIZE hammeredLookup :: [(Int, value)] -> Int -> value = intLookup #-}
4316 </programlisting>
4317
4318       This feature has been removed, as it is now subsumed by the
4319       <literal>RULES</literal> pragma (see <xref linkend="rule-spec"/>).</para>
4320
4321     </sect2>
4322
4323 <sect2 id="specialize-instance-pragma">
4324 <title>SPECIALIZE instance pragma
4325 </title>
4326
4327 <para>
4328 <indexterm><primary>SPECIALIZE pragma</primary></indexterm>
4329 <indexterm><primary>overloading, death to</primary></indexterm>
4330 Same idea, except for instance declarations.  For example:
4331
4332 <programlisting>
4333 instance (Eq a) => Eq (Foo a) where { 
4334    {-# SPECIALIZE instance Eq (Foo [(Int, Bar)]) #-}
4335    ... usual stuff ...
4336  }
4337 </programlisting>
4338 The pragma must occur inside the <literal>where</literal> part
4339 of the instance declaration.
4340 </para>
4341 <para>
4342 Compatible with HBC, by the way, except perhaps in the placement
4343 of the pragma.
4344 </para>
4345
4346 </sect2>
4347
4348     <sect2 id="unpack-pragma">
4349       <title>UNPACK pragma</title>
4350
4351       <indexterm><primary>UNPACK</primary></indexterm>
4352       
4353       <para>The <literal>UNPACK</literal> indicates to the compiler
4354       that it should unpack the contents of a constructor field into
4355       the constructor itself, removing a level of indirection.  For
4356       example:</para>
4357
4358 <programlisting>
4359 data T = T {-# UNPACK #-} !Float
4360            {-# UNPACK #-} !Float
4361 </programlisting>
4362
4363       <para>will create a constructor <literal>T</literal> containing
4364       two unboxed floats.  This may not always be an optimisation: if
4365       the <function>T</function> constructor is scrutinised and the
4366       floats passed to a non-strict function for example, they will
4367       have to be reboxed (this is done automatically by the
4368       compiler).</para>
4369
4370       <para>Unpacking constructor fields should only be used in
4371       conjunction with <option>-O</option>, in order to expose
4372       unfoldings to the compiler so the reboxing can be removed as
4373       often as possible.  For example:</para>
4374
4375 <programlisting>
4376 f :: T -&#62; Float
4377 f (T f1 f2) = f1 + f2
4378 </programlisting>
4379
4380       <para>The compiler will avoid reboxing <function>f1</function>
4381       and <function>f2</function> by inlining <function>+</function>
4382       on floats, but only when <option>-O</option> is on.</para>
4383
4384       <para>Any single-constructor data is eligible for unpacking; for
4385       example</para>
4386
4387 <programlisting>
4388 data T = T {-# UNPACK #-} !(Int,Int)
4389 </programlisting>
4390
4391       <para>will store the two <literal>Int</literal>s directly in the
4392       <function>T</function> constructor, by flattening the pair.
4393       Multi-level unpacking is also supported:</para>
4394
4395 <programlisting>
4396 data T = T {-# UNPACK #-} !S
4397 data S = S {-# UNPACK #-} !Int {-# UNPACK #-} !Int
4398 </programlisting>
4399
4400       <para>will store two unboxed <literal>Int&num;</literal>s
4401       directly in the <function>T</function> constructor.  The
4402       unpacker can see through newtypes, too.</para>
4403
4404       <para>If a field cannot be unpacked, you will not get a warning,
4405       so it might be an idea to check the generated code with
4406       <option>-ddump-simpl</option>.</para>
4407
4408       <para>See also the <option>-funbox-strict-fields</option> flag,
4409       which essentially has the effect of adding
4410       <literal>{-#&nbsp;UNPACK&nbsp;#-}</literal> to every strict
4411       constructor field.</para>
4412     </sect2>
4413
4414 </sect1>
4415
4416 <!--  ======================= REWRITE RULES ======================== -->
4417
4418 <sect1 id="rewrite-rules">
4419 <title>Rewrite rules
4420
4421 <indexterm><primary>RULES pagma</primary></indexterm>
4422 <indexterm><primary>pragma, RULES</primary></indexterm>
4423 <indexterm><primary>rewrite rules</primary></indexterm></title>
4424
4425 <para>
4426 The programmer can specify rewrite rules as part of the source program
4427 (in a pragma).  GHC applies these rewrite rules wherever it can, provided (a) 
4428 the <option>-O</option> flag (<xref linkend="options-optimise"/>) is on, 
4429 and (b) the <option>-frules-off</option> flag
4430 (<xref linkend="options-f"/>) is not specified.
4431 </para>
4432
4433 <para>
4434 Here is an example:
4435
4436 <programlisting>
4437   {-# RULES
4438         "map/map"       forall f g xs. map f (map g xs) = map (f.g) xs
4439   #-}
4440 </programlisting>
4441
4442 </para>
4443
4444 <sect2>
4445 <title>Syntax</title>
4446
4447 <para>
4448 From a syntactic point of view:
4449
4450 <itemizedlist>
4451 <listitem>
4452
4453 <para>
4454  There may be zero or more rules in a <literal>RULES</literal> pragma.
4455 </para>
4456 </listitem>
4457
4458 <listitem>
4459
4460 <para>
4461  Each rule has a name, enclosed in double quotes.  The name itself has
4462 no significance at all.  It is only used when reporting how many times the rule fired.
4463 </para>
4464 </listitem>
4465
4466 <listitem>
4467 <para>
4468 A rule may optionally have a phase-control number (see <xref linkend="phase-control"/>),
4469 immediately after the name of the rule.  Thus:
4470 <programlisting>
4471   {-# RULES
4472         "map/map" [2]  forall f g xs. map f (map g xs) = map (f.g) xs
4473   #-}
4474 </programlisting>
4475 The "[2]" means that the rule is active in Phase 2 and subsequent phases.  The inverse
4476 notation "[~2]" is also accepted, meaning that the rule is active up to, but not including,
4477 Phase 2.
4478 </para>
4479 </listitem>
4480
4481
4482 <listitem>
4483
4484 <para>
4485  Layout applies in a <literal>RULES</literal> pragma.  Currently no new indentation level
4486 is set, so you must lay out your rules starting in the same column as the
4487 enclosing definitions.
4488 </para>
4489 </listitem>
4490
4491 <listitem>
4492
4493 <para>
4494  Each variable mentioned in a rule must either be in scope (e.g. <function>map</function>),
4495 or bound by the <literal>forall</literal> (e.g. <function>f</function>, <function>g</function>, <function>xs</function>).  The variables bound by
4496 the <literal>forall</literal> are called the <emphasis>pattern</emphasis> variables.  They are separated
4497 by spaces, just like in a type <literal>forall</literal>.
4498 </para>
4499 </listitem>
4500 <listitem>
4501
4502 <para>
4503  A pattern variable may optionally have a type signature.
4504 If the type of the pattern variable is polymorphic, it <emphasis>must</emphasis> have a type signature.
4505 For example, here is the <literal>foldr/build</literal> rule:
4506
4507 <programlisting>
4508 "fold/build"  forall k z (g::forall b. (a->b->b) -> b -> b) .
4509               foldr k z (build g) = g k z
4510 </programlisting>
4511
4512 Since <function>g</function> has a polymorphic type, it must have a type signature.
4513
4514 </para>
4515 </listitem>
4516 <listitem>
4517
4518 <para>
4519 The left hand side of a rule must consist of a top-level variable applied
4520 to arbitrary expressions.  For example, this is <emphasis>not</emphasis> OK:
4521
4522 <programlisting>
4523 "wrong1"   forall e1 e2.  case True of { True -> e1; False -> e2 } = e1
4524 "wrong2"   forall f.      f True = True
4525 </programlisting>
4526
4527 In <literal>"wrong1"</literal>, the LHS is not an application; in <literal>"wrong2"</literal>, the LHS has a pattern variable
4528 in the head.
4529 </para>
4530 </listitem>
4531 <listitem>
4532
4533 <para>
4534  A rule does not need to be in the same module as (any of) the
4535 variables it mentions, though of course they need to be in scope.
4536 </para>
4537 </listitem>
4538 <listitem>
4539
4540 <para>
4541  Rules are automatically exported from a module, just as instance declarations are.
4542 </para>
4543 </listitem>
4544
4545 </itemizedlist>
4546
4547 </para>
4548
4549 </sect2>
4550
4551 <sect2>
4552 <title>Semantics</title>
4553
4554 <para>
4555 From a semantic point of view:
4556
4557 <itemizedlist>
4558 <listitem>
4559
4560 <para>
4561 Rules are only applied if you use the <option>-O</option> flag.
4562 </para>
4563 </listitem>
4564
4565 <listitem>
4566 <para>
4567  Rules are regarded as left-to-right rewrite rules.
4568 When GHC finds an expression that is a substitution instance of the LHS
4569 of a rule, it replaces the expression by the (appropriately-substituted) RHS.
4570 By "a substitution instance" we mean that the LHS can be made equal to the
4571 expression by substituting for the pattern variables.
4572
4573 </para>
4574 </listitem>
4575 <listitem>
4576
4577 <para>
4578  The LHS and RHS of a rule are typechecked, and must have the
4579 same type.
4580
4581 </para>
4582 </listitem>
4583 <listitem>
4584
4585 <para>
4586  GHC makes absolutely no attempt to verify that the LHS and RHS
4587 of a rule have the same meaning.  That is undecideable in general, and
4588 infeasible in most interesting cases.  The responsibility is entirely the programmer's!
4589
4590 </para>
4591 </listitem>
4592 <listitem>
4593
4594 <para>
4595  GHC makes no attempt to make sure that the rules are confluent or
4596 terminating.  For example:
4597
4598 <programlisting>
4599   "loop"        forall x,y.  f x y = f y x
4600 </programlisting>
4601
4602 This rule will cause the compiler to go into an infinite loop.
4603
4604 </para>
4605 </listitem>
4606 <listitem>
4607
4608 <para>
4609  If more than one rule matches a call, GHC will choose one arbitrarily to apply.
4610
4611 </para>
4612 </listitem>
4613 <listitem>
4614 <para>
4615  GHC currently uses a very simple, syntactic, matching algorithm
4616 for matching a rule LHS with an expression.  It seeks a substitution
4617 which makes the LHS and expression syntactically equal modulo alpha
4618 conversion.  The pattern (rule), but not the expression, is eta-expanded if
4619 necessary.  (Eta-expanding the epression can lead to laziness bugs.)
4620 But not beta conversion (that's called higher-order matching).
4621 </para>
4622
4623 <para>
4624 Matching is carried out on GHC's intermediate language, which includes
4625 type abstractions and applications.  So a rule only matches if the
4626 types match too.  See <xref linkend="rule-spec"/> below.
4627 </para>
4628 </listitem>
4629 <listitem>
4630
4631 <para>
4632  GHC keeps trying to apply the rules as it optimises the program.
4633 For example, consider:
4634
4635 <programlisting>
4636   let s = map f
4637       t = map g
4638   in
4639   s (t xs)
4640 </programlisting>
4641
4642 The expression <literal>s (t xs)</literal> does not match the rule <literal>"map/map"</literal>, but GHC
4643 will substitute for <varname>s</varname> and <varname>t</varname>, giving an expression which does match.
4644 If <varname>s</varname> or <varname>t</varname> was (a) used more than once, and (b) large or a redex, then it would
4645 not be substituted, and the rule would not fire.
4646
4647 </para>
4648 </listitem>
4649 <listitem>
4650
4651 <para>
4652  In the earlier phases of compilation, GHC inlines <emphasis>nothing
4653 that appears on the LHS of a rule</emphasis>, because once you have substituted
4654 for something you can't match against it (given the simple minded
4655 matching).  So if you write the rule
4656
4657 <programlisting>
4658         "map/map"       forall f,g.  map f . map g = map (f.g)
4659 </programlisting>
4660
4661 this <emphasis>won't</emphasis> match the expression <literal>map f (map g xs)</literal>.
4662 It will only match something written with explicit use of ".".
4663 Well, not quite.  It <emphasis>will</emphasis> match the expression
4664
4665 <programlisting>
4666 wibble f g xs
4667 </programlisting>
4668
4669 where <function>wibble</function> is defined:
4670
4671 <programlisting>
4672 wibble f g = map f . map g
4673 </programlisting>
4674
4675 because <function>wibble</function> will be inlined (it's small).
4676
4677 Later on in compilation, GHC starts inlining even things on the
4678 LHS of rules, but still leaves the rules enabled.  This inlining
4679 policy is controlled by the per-simplification-pass flag <option>-finline-phase</option><emphasis>n</emphasis>.
4680
4681 </para>
4682 </listitem>
4683 <listitem>
4684
4685 <para>
4686  All rules are implicitly exported from the module, and are therefore
4687 in force in any module that imports the module that defined the rule, directly
4688 or indirectly.  (That is, if A imports B, which imports C, then C's rules are
4689 in force when compiling A.)  The situation is very similar to that for instance
4690 declarations.
4691 </para>
4692 </listitem>
4693
4694 </itemizedlist>
4695
4696 </para>
4697
4698 </sect2>
4699
4700 <sect2>
4701 <title>List fusion</title>
4702
4703 <para>
4704 The RULES mechanism is used to implement fusion (deforestation) of common list functions.
4705 If a "good consumer" consumes an intermediate list constructed by a "good producer", the
4706 intermediate list should be eliminated entirely.
4707 </para>
4708
4709 <para>
4710 The following are good producers:
4711
4712 <itemizedlist>
4713 <listitem>
4714
4715 <para>
4716  List comprehensions
4717 </para>
4718 </listitem>
4719 <listitem>
4720
4721 <para>
4722  Enumerations of <literal>Int</literal> and <literal>Char</literal> (e.g. <literal>['a'..'z']</literal>).
4723 </para>
4724 </listitem>
4725 <listitem>
4726
4727 <para>
4728  Explicit lists (e.g. <literal>[True, False]</literal>)
4729 </para>
4730 </listitem>
4731 <listitem>
4732
4733 <para>
4734  The cons constructor (e.g <literal>3:4:[]</literal>)
4735 </para>
4736 </listitem>
4737 <listitem>
4738
4739 <para>
4740  <function>++</function>
4741 </para>
4742 </listitem>
4743
4744 <listitem>
4745 <para>
4746  <function>map</function>
4747 </para>
4748 </listitem>
4749
4750 <listitem>
4751 <para>
4752  <function>filter</function>
4753 </para>
4754 </listitem>
4755 <listitem>
4756
4757 <para>
4758  <function>iterate</function>, <function>repeat</function>
4759 </para>
4760 </listitem>
4761 <listitem>
4762
4763 <para>
4764  <function>zip</function>, <function>zipWith</function>
4765 </para>
4766 </listitem>
4767
4768 </itemizedlist>
4769
4770 </para>
4771
4772 <para>
4773 The following are good consumers:
4774
4775 <itemizedlist>
4776 <listitem>
4777
4778 <para>
4779  List comprehensions
4780 </para>
4781 </listitem>
4782 <listitem>
4783
4784 <para>
4785  <function>array</function> (on its second argument)
4786 </para>
4787 </listitem>
4788 <listitem>
4789
4790 <para>
4791  <function>length</function>
4792 </para>
4793 </listitem>
4794 <listitem>
4795
4796 <para>
4797  <function>++</function> (on its first argument)
4798 </para>
4799 </listitem>
4800
4801 <listitem>
4802 <para>
4803  <function>foldr</function>
4804 </para>
4805 </listitem>
4806
4807 <listitem>
4808 <para>
4809  <function>map</function>
4810 </para>
4811 </listitem>
4812 <listitem>
4813
4814 <para>
4815  <function>filter</function>
4816 </para>
4817 </listitem>
4818 <listitem>
4819
4820 <para>
4821  <function>concat</function>
4822 </para>
4823 </listitem>
4824 <listitem>
4825
4826 <para>
4827  <function>unzip</function>, <function>unzip2</function>, <function>unzip3</function>, <function>unzip4</function>
4828 </para>
4829 </listitem>
4830 <listitem>
4831
4832 <para>
4833  <function>zip</function>, <function>zipWith</function> (but on one argument only; if both are good producers, <function>zip</function>
4834 will fuse with one but not the other)
4835 </para>
4836 </listitem>
4837 <listitem>
4838
4839 <para>
4840  <function>partition</function>
4841 </para>
4842 </listitem>
4843 <listitem>
4844
4845 <para>
4846  <function>head</function>
4847 </para>
4848 </listitem>
4849 <listitem>
4850
4851 <para>
4852  <function>and</function>, <function>or</function>, <function>any</function>, <function>all</function>
4853 </para>
4854 </listitem>
4855 <listitem>
4856
4857 <para>
4858  <function>sequence&lowbar;</function>
4859 </para>
4860 </listitem>
4861 <listitem>
4862
4863 <para>
4864  <function>msum</function>
4865 </para>
4866 </listitem>
4867 <listitem>
4868
4869 <para>
4870  <function>sortBy</function>
4871 </para>
4872 </listitem>
4873
4874 </itemizedlist>
4875
4876 </para>
4877
4878  <para>
4879 So, for example, the following should generate no intermediate lists:
4880
4881 <programlisting>
4882 array (1,10) [(i,i*i) | i &#60;- map (+ 1) [0..9]]
4883 </programlisting>
4884
4885 </para>
4886
4887 <para>
4888 This list could readily be extended; if there are Prelude functions that you use
4889 a lot which are not included, please tell us.
4890 </para>
4891
4892 <para>
4893 If you want to write your own good consumers or producers, look at the
4894 Prelude definitions of the above functions to see how to do so.
4895 </para>
4896
4897 </sect2>
4898
4899 <sect2 id="rule-spec">
4900 <title>Specialisation
4901 </title>
4902
4903 <para>
4904 Rewrite rules can be used to get the same effect as a feature
4905 present in earlier versions of GHC.
4906 For example, suppose that:
4907
4908 <programlisting>
4909 genericLookup :: Ord a => Table a b   -> a   -> b
4910 intLookup     ::          Table Int b -> Int -> b
4911 </programlisting>
4912
4913 where <function>intLookup</function> is an implementation of
4914 <function>genericLookup</function> that works very fast for
4915 keys of type <literal>Int</literal>.  You might wish
4916 to tell GHC to use <function>intLookup</function> instead of
4917 <function>genericLookup</function> whenever the latter was called with
4918 type <literal>Table Int b -&gt; Int -&gt; b</literal>.
4919 It used to be possible to write
4920
4921 <programlisting>
4922 {-# SPECIALIZE genericLookup :: Table Int b -> Int -> b = intLookup #-}
4923 </programlisting>
4924
4925 This feature is no longer in GHC, but rewrite rules let you do the same thing:
4926
4927 <programlisting>
4928 {-# RULES "genericLookup/Int" genericLookup = intLookup #-}
4929 </programlisting>
4930
4931 This slightly odd-looking rule instructs GHC to replace
4932 <function>genericLookup</function> by <function>intLookup</function>
4933 <emphasis>whenever the types match</emphasis>.
4934 What is more, this rule does not need to be in the same
4935 file as <function>genericLookup</function>, unlike the
4936 <literal>SPECIALIZE</literal> pragmas which currently do (so that they
4937 have an original definition available to specialise).
4938 </para>
4939
4940 <para>It is <emphasis>Your Responsibility</emphasis> to make sure that
4941 <function>intLookup</function> really behaves as a specialised version
4942 of <function>genericLookup</function>!!!</para>
4943
4944 <para>An example in which using <literal>RULES</literal> for
4945 specialisation will Win Big:
4946
4947 <programlisting>
4948 toDouble :: Real a => a -> Double
4949 toDouble = fromRational . toRational
4950
4951 {-# RULES "toDouble/Int" toDouble = i2d #-}
4952 i2d (I# i) = D# (int2Double# i) -- uses Glasgow prim-op directly
4953 </programlisting>
4954
4955 The <function>i2d</function> function is virtually one machine
4956 instruction; the default conversion&mdash;via an intermediate
4957 <literal>Rational</literal>&mdash;is obscenely expensive by
4958 comparison.
4959 </para>
4960
4961 </sect2>
4962
4963 <sect2>
4964 <title>Controlling what's going on</title>
4965
4966 <para>
4967
4968 <itemizedlist>
4969 <listitem>
4970
4971 <para>
4972  Use <option>-ddump-rules</option> to see what transformation rules GHC is using.
4973 </para>
4974 </listitem>
4975 <listitem>
4976
4977 <para>
4978  Use <option>-ddump-simpl-stats</option> to see what rules are being fired.
4979 If you add <option>-dppr-debug</option> you get a more detailed listing.
4980 </para>
4981 </listitem>
4982 <listitem>
4983
4984 <para>
4985  The defintion of (say) <function>build</function> in <filename>GHC/Base.lhs</filename> looks llike this:
4986
4987 <programlisting>
4988         build   :: forall a. (forall b. (a -> b -> b) -> b -> b) -> [a]
4989         {-# INLINE build #-}
4990         build g = g (:) []
4991 </programlisting>
4992
4993 Notice the <literal>INLINE</literal>!  That prevents <literal>(:)</literal> from being inlined when compiling
4994 <literal>PrelBase</literal>, so that an importing module will &ldquo;see&rdquo; the <literal>(:)</literal>, and can
4995 match it on the LHS of a rule.  <literal>INLINE</literal> prevents any inlining happening
4996 in the RHS of the <literal>INLINE</literal> thing.  I regret the delicacy of this.
4997
4998 </para>
4999 </listitem>
5000 <listitem>
5001
5002 <para>
5003  In <filename>libraries/base/GHC/Base.lhs</filename> look at the rules for <function>map</function> to
5004 see how to write rules that will do fusion and yet give an efficient
5005 program even if fusion doesn't happen.  More rules in <filename>GHC/List.lhs</filename>.
5006 </para>
5007 </listitem>
5008
5009 </itemizedlist>
5010
5011 </para>
5012
5013 </sect2>
5014
5015 <sect2 id="core-pragma">
5016   <title>CORE pragma</title>
5017
5018   <indexterm><primary>CORE pragma</primary></indexterm>
5019   <indexterm><primary>pragma, CORE</primary></indexterm>
5020   <indexterm><primary>core, annotation</primary></indexterm>
5021
5022 <para>
5023   The external core format supports <quote>Note</quote> annotations;
5024   the <literal>CORE</literal> pragma gives a way to specify what these
5025   should be in your Haskell source code.  Syntactically, core
5026   annotations are attached to expressions and take a Haskell string
5027   literal as an argument.  The following function definition shows an
5028   example:
5029
5030 <programlisting>
5031 f x = ({-# CORE "foo" #-} show) ({-# CORE "bar" #-} x)
5032 </programlisting>
5033
5034   Sematically, this is equivalent to:
5035
5036 <programlisting>
5037 g x = show x
5038 </programlisting>
5039 </para>
5040
5041 <para>
5042   However, when external for is generated (via
5043   <option>-fext-core</option>), there will be Notes attached to the
5044   expressions <function>show</function> and <varname>x</varname>.
5045   The core function declaration for <function>f</function> is:
5046 </para>
5047
5048 <programlisting>
5049   f :: %forall a . GHCziShow.ZCTShow a ->
5050                    a -> GHCziBase.ZMZN GHCziBase.Char =
5051     \ @ a (zddShow::GHCziShow.ZCTShow a) (eta::a) ->
5052         (%note "foo"
5053          %case zddShow %of (tpl::GHCziShow.ZCTShow a)
5054            {GHCziShow.ZCDShow
5055             (tpl1::GHCziBase.Int ->
5056                    a ->
5057                    GHCziBase.ZMZN GHCziBase.Char -> GHCziBase.ZMZN GHCziBase.Cha
5058 r)
5059             (tpl2::a -> GHCziBase.ZMZN GHCziBase.Char)
5060             (tpl3::GHCziBase.ZMZN a ->
5061                    GHCziBase.ZMZN GHCziBase.Char -> GHCziBase.ZMZN GHCziBase.Cha
5062 r) ->
5063               tpl2})
5064         (%note "foo"
5065          eta);
5066 </programlisting>
5067
5068 <para>
5069   Here, we can see that the function <function>show</function> (which
5070   has been expanded out to a case expression over the Show dictionary)
5071   has a <literal>%note</literal> attached to it, as does the
5072   expression <varname>eta</varname> (which used to be called
5073   <varname>x</varname>).
5074 </para>
5075
5076 </sect2>
5077
5078 </sect1>
5079
5080 <sect1 id="generic-classes">
5081 <title>Generic classes</title>
5082
5083     <para>(Note: support for generic classes is currently broken in
5084     GHC 5.02).</para>
5085
5086 <para>
5087 The ideas behind this extension are described in detail in "Derivable type classes",
5088 Ralf Hinze and Simon Peyton Jones, Haskell Workshop, Montreal Sept 2000, pp94-105.
5089 An example will give the idea:
5090 </para>
5091
5092 <programlisting>
5093   import Generics
5094
5095   class Bin a where
5096     toBin   :: a -> [Int]
5097     fromBin :: [Int] -> (a, [Int])
5098   
5099     toBin {| Unit |}    Unit      = []
5100     toBin {| a :+: b |} (Inl x)   = 0 : toBin x
5101     toBin {| a :+: b |} (Inr y)   = 1 : toBin y
5102     toBin {| a :*: b |} (x :*: y) = toBin x ++ toBin y
5103   
5104     fromBin {| Unit |}    bs      = (Unit, bs)
5105     fromBin {| a :+: b |} (0:bs)  = (Inl x, bs')    where (x,bs') = fromBin bs
5106     fromBin {| a :+: b |} (1:bs)  = (Inr y, bs')    where (y,bs') = fromBin bs
5107     fromBin {| a :*: b |} bs      = (x :*: y, bs'') where (x,bs' ) = fromBin bs
5108                                                           (y,bs'') = fromBin bs'
5109 </programlisting>
5110 <para>
5111 This class declaration explains how <literal>toBin</literal> and <literal>fromBin</literal>
5112 work for arbitrary data types.  They do so by giving cases for unit, product, and sum,
5113 which are defined thus in the library module <literal>Generics</literal>:
5114 </para>
5115 <programlisting>
5116   data Unit    = Unit
5117   data a :+: b = Inl a | Inr b
5118   data a :*: b = a :*: b
5119 </programlisting>
5120 <para>
5121 Now you can make a data type into an instance of Bin like this:
5122 <programlisting>
5123   instance (Bin a, Bin b) => Bin (a,b)
5124   instance Bin a => Bin [a]
5125 </programlisting>
5126 That is, just leave off the "where" clause.  Of course, you can put in the
5127 where clause and over-ride whichever methods you please.
5128 </para>
5129
5130     <sect2>
5131       <title> Using generics </title>
5132       <para>To use generics you need to</para>
5133       <itemizedlist>
5134         <listitem>
5135           <para>Use the flags <option>-fglasgow-exts</option> (to enable the extra syntax), 
5136                 <option>-fgenerics</option> (to generate extra per-data-type code),
5137                 and <option>-package lang</option> (to make the <literal>Generics</literal> library
5138                 available.  </para>
5139         </listitem>
5140         <listitem>
5141           <para>Import the module <literal>Generics</literal> from the
5142           <literal>lang</literal> package.  This import brings into
5143           scope the data types <literal>Unit</literal>,
5144           <literal>:*:</literal>, and <literal>:+:</literal>.  (You
5145           don't need this import if you don't mention these types
5146           explicitly; for example, if you are simply giving instance
5147           declarations.)</para>
5148         </listitem>
5149       </itemizedlist>
5150     </sect2>
5151
5152 <sect2> <title> Changes wrt the paper </title>
5153 <para>
5154 Note that the type constructors <literal>:+:</literal> and <literal>:*:</literal> 
5155 can be written infix (indeed, you can now use
5156 any operator starting in a colon as an infix type constructor).  Also note that
5157 the type constructors are not exactly as in the paper (Unit instead of 1, etc).
5158 Finally, note that the syntax of the type patterns in the class declaration
5159 uses "<literal>{|</literal>" and "<literal>|}</literal>" brackets; curly braces
5160 alone would ambiguous when they appear on right hand sides (an extension we 
5161 anticipate wanting).
5162 </para>
5163 </sect2>
5164
5165 <sect2> <title>Terminology and restrictions</title>
5166 <para>
5167 Terminology.  A "generic default method" in a class declaration
5168 is one that is defined using type patterns as above.
5169 A "polymorphic default method" is a default method defined as in Haskell 98.
5170 A "generic class declaration" is a class declaration with at least one
5171 generic default method.
5172 </para>
5173
5174 <para>
5175 Restrictions:
5176 <itemizedlist>
5177 <listitem>
5178 <para>
5179 Alas, we do not yet implement the stuff about constructor names and 
5180 field labels.
5181 </para>
5182 </listitem>
5183
5184 <listitem>
5185 <para>
5186 A generic class can have only one parameter; you can't have a generic
5187 multi-parameter class.
5188 </para>
5189 </listitem>
5190
5191 <listitem>
5192 <para>
5193 A default method must be defined entirely using type patterns, or entirely
5194 without.  So this is illegal:
5195 <programlisting>
5196   class Foo a where
5197     op :: a -> (a, Bool)
5198     op {| Unit |} Unit = (Unit, True)
5199     op x               = (x,    False)
5200 </programlisting>
5201 However it is perfectly OK for some methods of a generic class to have 
5202 generic default methods and others to have polymorphic default methods.
5203 </para>
5204 </listitem>
5205
5206 <listitem>
5207 <para>
5208 The type variable(s) in the type pattern for a generic method declaration
5209 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:
5210 <programlisting>
5211   class Foo a where
5212     op :: a -> Bool
5213     op {| p :*: q |} (x :*: y) = op (x :: p)
5214     ...
5215 </programlisting>
5216 </para>
5217 </listitem>
5218
5219 <listitem>
5220 <para>
5221 The type patterns in a generic default method must take one of the forms:
5222 <programlisting>
5223        a :+: b
5224        a :*: b
5225        Unit
5226 </programlisting>
5227 where "a" and "b" are type variables.  Furthermore, all the type patterns for
5228 a single type constructor (<literal>:*:</literal>, say) must be identical; they
5229 must use the same type variables.  So this is illegal:
5230 <programlisting>
5231   class Foo a where
5232     op :: a -> Bool
5233     op {| a :+: b |} (Inl x) = True
5234     op {| p :+: q |} (Inr y) = False
5235 </programlisting>
5236 The type patterns must be identical, even in equations for different methods of the class.
5237 So this too is illegal:
5238 <programlisting>
5239   class Foo a where
5240     op1 :: a -> Bool
5241     op1 {| a :*: b |} (x :*: y) = True
5242
5243     op2 :: a -> Bool
5244     op2 {| p :*: q |} (x :*: y) = False
5245 </programlisting>
5246 (The reason for this restriction is that we gather all the equations for a particular type consructor
5247 into a single generic instance declaration.)
5248 </para>
5249 </listitem>
5250
5251 <listitem>
5252 <para>
5253 A generic method declaration must give a case for each of the three type constructors.
5254 </para>
5255 </listitem>
5256
5257 <listitem>
5258 <para>
5259 The type for a generic method can be built only from:
5260   <itemizedlist>
5261   <listitem> <para> Function arrows </para> </listitem>
5262   <listitem> <para> Type variables </para> </listitem>
5263   <listitem> <para> Tuples </para> </listitem>
5264   <listitem> <para> Arbitrary types not involving type variables </para> </listitem>
5265   </itemizedlist>
5266 Here are some example type signatures for generic methods:
5267 <programlisting>
5268     op1 :: a -> Bool
5269     op2 :: Bool -> (a,Bool)
5270     op3 :: [Int] -> a -> a
5271     op4 :: [a] -> Bool
5272 </programlisting>
5273 Here, op1, op2, op3 are OK, but op4 is rejected, because it has a type variable
5274 inside a list.  
5275 </para>
5276 <para>
5277 This restriction is an implementation restriction: we just havn't got around to
5278 implementing the necessary bidirectional maps over arbitrary type constructors.
5279 It would be relatively easy to add specific type constructors, such as Maybe and list,
5280 to the ones that are allowed.</para>
5281 </listitem>
5282
5283 <listitem>
5284 <para>
5285 In an instance declaration for a generic class, the idea is that the compiler
5286 will fill in the methods for you, based on the generic templates.  However it can only
5287 do so if
5288   <itemizedlist>
5289   <listitem>
5290   <para>
5291   The instance type is simple (a type constructor applied to type variables, as in Haskell 98).
5292   </para>
5293   </listitem>
5294   <listitem>
5295   <para>
5296   No constructor of the instance type has unboxed fields.
5297   </para>
5298   </listitem>
5299   </itemizedlist>
5300 (Of course, these things can only arise if you are already using GHC extensions.)
5301 However, you can still give an instance declarations for types which break these rules,
5302 provided you give explicit code to override any generic default methods.
5303 </para>
5304 </listitem>
5305
5306 </itemizedlist>
5307 </para>
5308
5309 <para>
5310 The option <option>-ddump-deriv</option> dumps incomprehensible stuff giving details of 
5311 what the compiler does with generic declarations.
5312 </para>
5313
5314 </sect2>
5315
5316 <sect2> <title> Another example </title>
5317 <para>
5318 Just to finish with, here's another example I rather like:
5319 <programlisting>
5320   class Tag a where
5321     nCons :: a -> Int
5322     nCons {| Unit |}    _ = 1
5323     nCons {| a :*: b |} _ = 1
5324     nCons {| a :+: b |} _ = nCons (bot::a) + nCons (bot::b)
5325   
5326     tag :: a -> Int
5327     tag {| Unit |}    _       = 1
5328     tag {| a :*: b |} _       = 1   
5329     tag {| a :+: b |} (Inl x) = tag x
5330     tag {| a :+: b |} (Inr y) = nCons (bot::a) + tag y
5331 </programlisting>
5332 </para>
5333 </sect2>
5334 </sect1>
5335
5336
5337
5338 <!-- Emacs stuff:
5339      ;;; Local Variables: ***
5340      ;;; mode: sgml ***
5341      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter" "sect1") ***
5342      ;;; End: ***
5343  -->
5344