[project @ 2004-06-22 13:47:47 by simonpj]
[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 && 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 &&
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] <- x
619     , y > 3
620     , Just z <- 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 <- 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 <- xs | y <- 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 <- e11, p2 <- e12, ... 
748        | q1 <- e21, q2 <- e22, ... 
749        ... 
750    ] 
751 </programlisting>
752
753     <para>This will be translated to: </para>
754
755 <programlisting>
756    [ e | ((p1,p2), (q1,q2), ...) <- zipN [(p1,p2) | p1 <- e11, p2 <- e12, ...] 
757                                          [(q1,q2) | q1 <- e21, q2 <- 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 = (<=) 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) = <...rhs of f...>
2766     (p::b, q::b) = (1,2)
2767   in <...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 of the form <literal>proc pat -> cmd</literal>,
3488 where <literal>proc</literal> is a new keyword.
3489 The variables of the pattern are bound in the body of the 
3490 <literal>proc</literal>-expression,
3491 which is a new sort of thing called a <firstterm>command</firstterm>.
3492 The syntax of commands is as follows:
3493 <screen>
3494 cmd   ::= exp1 -&lt;  exp2
3495        |  exp1 -&lt;&lt; exp2
3496        |  do { cstmt1 .. cstmtn ; cmd }
3497        |  let decls in cmd
3498        |  if exp then cmd1 else cmd2
3499        |  case exp of { calts }
3500        |  cmd1 qop cmd2
3501        |  (| aexp cmd1 .. cmdn |)
3502        |  \ pat1 .. patn -> cmd
3503        |  cmd aexp
3504        |  ( cmd )
3505
3506 cstmt ::= let decls
3507        |  pat &lt;- cmd
3508        |  rec { cstmt1 .. cstmtn }
3509        |  cmd
3510 </screen>
3511 Commands produce values, but (like monadic computations)
3512 may yield more than one value,
3513 or none, and may do other things as well.
3514 For the most part, familiarity with monadic notation is a good guide to
3515 using commands.
3516 However the values of expressions, even monadic ones,
3517 are determined by the values of the variables they contain;
3518 this is not necessarily the case for commands.
3519 </para>
3520
3521 <para>
3522 A simple example of the new notation is the expression
3523 <screen>
3524 proc x -> f -&lt; x+1
3525 </screen>
3526 We call this a <firstterm>procedure</firstterm> or
3527 <firstterm>arrow abstraction</firstterm>.
3528 As with a lambda expression, the variable <literal>x</literal>
3529 is a new variable bound within the <literal>proc</literal>-expression.
3530 It refers to the input to the arrow.
3531 In the above example, <literal>-&lt;</literal> is not an identifier but an
3532 new reserved symbol used for building commands from an expression of arrow
3533 type and an expression to be fed as input to that arrow.
3534 (The weird look will make more sense later.)
3535 It may be read as analogue of application for arrows.
3536 The above example is equivalent to the Haskell expression
3537 <screen>
3538 arr (\ x -> x+1) >>> f
3539 </screen>
3540 That would make no sense if the expression to the left of
3541 <literal>-&lt;</literal> involves the bound variable <literal>x</literal>.
3542 More generally, the expression to the left of <literal>-&lt;</literal>
3543 may not involve any <firstterm>local variable</firstterm>,
3544 i.e. a variable bound in the current arrow abstraction.
3545 For such a situation there is a variant <literal>-&lt;&lt;</literal>, as in
3546 <screen>
3547 proc x -> f x -&lt;&lt; x+1
3548 </screen>
3549 which is equivalent to
3550 <screen>
3551 arr (\ x -> (f, x+1)) >>> app
3552 </screen>
3553 so in this case the arrow must belong to the <literal>ArrowApply</literal>
3554 class.
3555 Such an arrow is equivalent to a monad, so if you're using this form
3556 you may find a monadic formulation more convenient.
3557 </para>
3558
3559 <sect2>
3560 <title>do-notation for commands</title>
3561
3562 <para>
3563 Another form of command is a form of <literal>do</literal>-notation.
3564 For example, you can write
3565 <screen>
3566 proc x -> do
3567         y &lt;- f -&lt; x+1
3568         g -&lt; 2*y
3569         let z = x+y
3570         t &lt;- h -&lt; x*z
3571         returnA -&lt; t+z
3572 </screen>
3573 You can read this much like ordinary <literal>do</literal>-notation,
3574 but with commands in place of monadic expressions.
3575 The first line sends the value of <literal>x+1</literal> as an input to
3576 the arrow <literal>f</literal>, and matches its output against
3577 <literal>y</literal>.
3578 In the next line, the output is discarded.
3579 The arrow <literal>returnA</literal> is defined in the
3580 <ulink url="../base/Control.Arrow.html"><literal>Control.Arrow</literal></ulink>
3581 module as <literal>arr id</literal>.
3582 The above example is treated as an abbreviation for
3583 <screen>
3584 arr (\ x -> (x, x)) >>>
3585         first (arr (\ x -> x+1) >>> f) >>>
3586         arr (\ (y, x) -> (y, (x, y))) >>>
3587         first (arr (\ y -> 2*y) >>> g) >>>
3588         arr snd >>>
3589         arr (\ (x, y) -> let z = x+y in ((x, z), z)) >>>
3590         first (arr (\ (x, z) -> x*z) >>> h) >>>
3591         arr (\ (t, z) -> t+z) >>>
3592         returnA
3593 </screen>
3594 Note that variables not used later in the composition are projected out.
3595 After simplification using rewrite rules (see <xref linkEnd="rewrite-rules">)
3596 defined in the
3597 <ulink url="../base/Control.Arrow.html"><literal>Control.Arrow</literal></ulink>
3598 module, this reduces to
3599 <screen>
3600 arr (\ x -> (x+1, x)) >>>
3601         first f >>>
3602         arr (\ (y, x) -> (2*y, (x, y))) >>>
3603         first g >>>
3604         arr (\ (_, (x, y)) -> let z = x+y in (x*z, z)) >>>
3605         first h >>>
3606         arr (\ (t, z) -> t+z)
3607 </screen>
3608 which is what you might have written by hand.
3609 With arrow notation, GHC keeps track of all those tuples of variables for you.
3610 </para>
3611
3612 <para>
3613 Note that although the above translation suggests that
3614 <literal>let</literal>-bound variables like <literal>z</literal> must be
3615 monomorphic, the actual translation produces Core,
3616 so polymorphic variables are allowed.
3617 </para>
3618
3619 <para>
3620 It's also possible to have mutually recursive bindings,
3621 using the new <literal>rec</literal> keyword, as in the following example:
3622 <screen>
3623 counter :: ArrowCircuit a => a Bool Int
3624 counter = proc reset -> do
3625         rec     output &lt;- returnA -&lt; if reset then 0 else next
3626                 next &lt;- delay 0 -&lt; output+1
3627         returnA -&lt; output
3628 </screen>
3629 The translation of such forms uses the <literal>loop</literal> combinator,
3630 so the arrow concerned must belong to the <literal>ArrowLoop</literal> class.
3631 </para>
3632
3633 </sect2>
3634
3635 <sect2>
3636 <title>Conditional commands</title>
3637
3638 <para>
3639 In the previous example, we used a conditional expression to construct the
3640 input for an arrow.
3641 Sometimes we want to conditionally execute different commands, as in
3642 <screen>
3643 proc (x,y) ->
3644         if f x y
3645         then g -&lt; x+1
3646         else h -&lt; y+2
3647 </screen>
3648 which is translated to
3649 <screen>
3650 arr (\ (x,y) -> if f x y then Left x else Right y) >>>
3651         (arr (\x -> x+1) >>> f) ||| (arr (\y -> y+2) >>> g)
3652 </screen>
3653 Since the translation uses <literal>|||</literal>,
3654 the arrow concerned must belong to the <literal>ArrowChoice</literal> class.
3655 </para>
3656
3657 <para>
3658 There are also <literal>case</literal> commands, like
3659 <screen>
3660 case input of
3661     [] -> f -&lt; ()
3662     [x] -> g -&lt; x+1
3663     x1:x2:xs -> do
3664         y &lt;- h -&lt; (x1, x2)
3665         ys &lt;- k -&lt; xs
3666         returnA -&lt; y:ys
3667 </screen>
3668 The syntax is the same as for <literal>case</literal> expressions,
3669 except that the bodies of the alternatives are commands rather than expressions.
3670 The translation is similar to that of <literal>if</literal> commands.
3671 </para>
3672
3673 </sect2>
3674
3675 <sect2>
3676 <title>Defining your own control structures</title>
3677
3678 <para>
3679 As we're seen, arrow notation provides constructs,
3680 modelled on those for expressions,
3681 for sequencing, value recursion and conditionals.
3682 But suitable combinators,
3683 which you can define in ordinary Haskell,
3684 may also be used to build new commands out of existing ones.
3685 The basic idea is that a command defines an arrow from environments to values.
3686 These environments assign values to the free local variables of the command.
3687 Thus combinators that produce arrows from arrows
3688 may also be used to build commands from commands.
3689 For example, the <literal>ArrowChoice</literal> class includes a combinator
3690 <programlisting>
3691 ArrowChoice a => (&lt;+>) :: a e c -> a e c -> a e c
3692 </programlisting>
3693 so we can use it to build commands:
3694 <programlisting>
3695 expr' = proc x ->
3696                 returnA -&lt; x
3697         &lt;+> do
3698                 symbol Plus -&lt; ()
3699                 y &lt;- term -&lt; ()
3700                 expr' -&lt; x + y
3701         &lt;+> do
3702                 symbol Minus -&lt; ()
3703                 y &lt;- term -&lt; ()
3704                 expr' -&lt; x - y
3705 </programlisting>
3706 This is equivalent to
3707 <programlisting>
3708 expr' = (proc x -> returnA -&lt; x)
3709         &lt;+> (proc x -> do
3710                 symbol Plus -&lt; ()
3711                 y &lt;- term -&lt; ()
3712                 expr' -&lt; x + y)
3713         &lt;+> (proc x -> do
3714                 symbol Minus -&lt; ()
3715                 y &lt;- term -&lt; ()
3716                 expr' -&lt; x - y)
3717 </programlisting>
3718 It is essential that this operator be polymorphic in <literal>e</literal>
3719 (representing the environment input to the command
3720 and thence to its subcommands)
3721 and satisfy the corresponding naturality property
3722 <screen>
3723 arr k >>> (f &lt;+> g) = (arr k >>> f) &lt;+> (arr k >>> g)
3724 </screen>
3725 at least for strict <literal>k</literal>.
3726 (This should be automatic if you're not using <literal>seq</literal>.)
3727 This ensures that environments seen by the subcommands are environments
3728 of the whole command,
3729 and also allows the translation to safely trim these environments.
3730 The operator must also not use any variable defined within the current
3731 arrow abstraction.
3732 </para>
3733
3734 <para>
3735 We could define our own operator
3736 <programlisting>
3737 untilA :: ArrowChoice a => a e () -> a e Bool -> a e ()
3738 untilA body cond = proc x ->
3739         if cond x then returnA -&lt; ()
3740         else do
3741                 body -&lt; x
3742                 untilA body cond -&lt; x
3743 </programlisting>
3744 and use it in the same way.
3745 Of course this infix syntax only makes sense for binary operators;
3746 there is also a more general syntax involving special brackets:
3747 <screen>
3748 proc x -> do
3749         y &lt;- f -&lt; x+1
3750         (|untilA (increment -&lt; x+y) (within 0.5 -&lt; x)|)
3751 </screen>
3752 </para>
3753
3754 </sect2>
3755
3756 <sect2>
3757 <title>Primitive constructs</title>
3758
3759 <para>
3760 Some operators will need to pass additional inputs to their subcommands.
3761 For example, in an arrow type supporting exceptions,
3762 the operator that attaches an exception handler will wish to pass the
3763 exception that occurred to the handler.
3764 Such an operator might have a type
3765 <screen>
3766 handleA :: ... => a e c -> a (e,Ex) c -> a e c
3767 </screen>
3768 where <literal>Ex</literal> is the type of exceptions handled.
3769 You could then use this with arrow notation by writing a command
3770 <screen>
3771 body `handleA` \ ex -> handler
3772 </screen>
3773 so that if an exception is raised in the command <literal>body</literal>,
3774 the variable <literal>ex</literal> is bound to the value of the exception
3775 and the command <literal>handler</literal>,
3776 which typically refers to <literal>ex</literal>, is entered.
3777 Though the syntax here looks like a functional lambda,
3778 we are talking about commands, and something different is going on.
3779 The input to the arrow represented by a command consists of values for
3780 the free local variables in the command, plus a stack of anonymous values.
3781 In all the prior examples, this stack was empty.
3782 In the second argument to <literal>handleA</literal>,
3783 this stack consists of one value, the value of the exception.
3784 The command form of lambda merely gives this value a name.
3785 </para>
3786
3787 <para>
3788 More concretely,
3789 the values on the stack are paired to the right of the environment.
3790 So when designing operators like <literal>handleA</literal> that pass
3791 extra inputs to their subcommands,
3792 More precisely, the type of each argument of the operator (and its result)
3793 should have the form
3794 <screen>
3795 a (...(e,t1), ... tn) t
3796 </screen>
3797 where <replaceable>e</replaceable> is a polymorphic variable
3798 (representing the environment)
3799 and <replaceable>ti</replaceable> are the types of the values on the stack,
3800 with <replaceable>t1</replaceable> being the <quote>top</quote>.
3801 The polymorphic variable <replaceable>e</replaceable> must not occur in
3802 <replaceable>a</replaceable>, <replaceable>ti</replaceable> or
3803 <replaceable>t</replaceable>.
3804 However the arrows involved need not be the same.
3805 Here are some more examples of suitable operators:
3806 <screen>
3807 bracketA :: ... => a e b -> a (e,b) c -> a (e,c) d -> a e d
3808 runReader :: ... => a e c -> a' (e,State) c
3809 runState :: ... => a e c -> a' (e,State) (c,State)
3810 </screen>
3811 We can supply the extra input required by commands built with the last two
3812 by applying them to ordinary expressions, as in
3813 <screen>
3814 proc x -> do
3815         s &lt;- ...
3816         (|runReader (do { ... })|) s
3817 </screen>
3818 which adds <literal>s</literal> to the stack of inputs to the command
3819 built using <literal>runReader</literal>.
3820 </para>
3821
3822 <para>
3823 The command versions of lambda abstraction and application are analogous to
3824 the expression versions.
3825 In particular, the beta and eta rules describe equivalences of commands.
3826 These three features (operators, lambda abstraction and application)
3827 are the core of the notation; everything else can be built using them,
3828 though the results would be somewhat clumsy.
3829 For example, we could simulate <literal>do</literal>-notation by defining
3830 <programlisting>
3831 bind :: Arrow a => a e b -> a (e,b) c -> a e c
3832 u `bind` f = returnA &&& u >>> f
3833
3834 bind_ :: Arrow a => a e b -> a e c -> a e c
3835 u `bind_` f = u `bind` (arr fst >>> f)
3836 </programlisting>
3837 We could simulate <literal>do</literal> by defining
3838 <programlisting>
3839 cond :: ArrowChoice a => a e b -> a e b -> a (e,Bool) b
3840 cond f g = arr (\ (e,b) -> if b then Left e else Right e) >>> f ||| g
3841 </programlisting>
3842 </para>
3843
3844 </sect2>
3845
3846 <sect2>
3847 <title>Differences with the paper</title>
3848
3849 <itemizedlist>
3850
3851 <listitem>
3852 <para>Instead of a single form of arrow application (arrow tail) with two
3853 translations, the implementation provides two forms
3854 <quote><literal>-&lt;</literal></quote> (first-order)
3855 and <quote><literal>-&lt;&lt;</literal></quote> (higher-order).
3856 </para>
3857 </listitem>
3858
3859 <listitem>
3860 <para>User-defined operators are flagged with banana brackets instead of
3861 a new <literal>form</literal> keyword.
3862 </para>
3863 </listitem>
3864
3865 </itemizedlist>
3866
3867 </sect2>
3868
3869 <sect2>
3870 <title>Portability</title>
3871
3872 <para>
3873 Although only GHC implements arrow notation directly,
3874 there is also a preprocessor
3875 (available from the 
3876 <ulink url="http://www.haskell.org/arrows/">arrows web page</ulink>)
3877 that translates arrow notation into Haskell 98
3878 for use with other Haskell systems.
3879 You would still want to check arrow programs with GHC;
3880 tracing type errors in the preprocessor output is not easy.
3881 Modules intended for both GHC and the preprocessor must observe some
3882 additional restrictions:
3883 <itemizedlist>
3884
3885 <listitem>
3886 <para>
3887 The module must import
3888 <ulink url="../base/Control.Arrow.html"><literal>Control.Arrow</literal></ulink>.
3889 </para>
3890 </listitem>
3891
3892 <listitem>
3893 <para>
3894 The preprocessor cannot cope with other Haskell extensions.
3895 These would have to go in separate modules.
3896 </para>
3897 </listitem>
3898
3899 <listitem>
3900 <para>
3901 Because the preprocessor targets Haskell (rather than Core),
3902 <literal>let</literal>-bound variables are monomorphic.
3903 </para>
3904 </listitem>
3905
3906 </itemizedlist>
3907 </para>
3908
3909 </sect2>
3910
3911 </sect1>
3912
3913 <!-- ==================== ASSERTIONS =================  -->
3914
3915 <sect1 id="sec-assertions">
3916 <title>Assertions
3917 <indexterm><primary>Assertions</primary></indexterm>
3918 </title>
3919
3920 <para>
3921 If you want to make use of assertions in your standard Haskell code, you
3922 could define a function like the following:
3923 </para>
3924
3925 <para>
3926
3927 <programlisting>
3928 assert :: Bool -> a -> a
3929 assert False x = error "assertion failed!"
3930 assert _     x = x
3931 </programlisting>
3932
3933 </para>
3934
3935 <para>
3936 which works, but gives you back a less than useful error message --
3937 an assertion failed, but which and where?
3938 </para>
3939
3940 <para>
3941 One way out is to define an extended <function>assert</function> function which also
3942 takes a descriptive string to include in the error message and
3943 perhaps combine this with the use of a pre-processor which inserts
3944 the source location where <function>assert</function> was used.
3945 </para>
3946
3947 <para>
3948 Ghc offers a helping hand here, doing all of this for you. For every
3949 use of <function>assert</function> in the user's source:
3950 </para>
3951
3952 <para>
3953
3954 <programlisting>
3955 kelvinToC :: Double -> Double
3956 kelvinToC k = assert (k &gt;= 0.0) (k+273.15)
3957 </programlisting>
3958
3959 </para>
3960
3961 <para>
3962 Ghc will rewrite this to also include the source location where the
3963 assertion was made,
3964 </para>
3965
3966 <para>
3967
3968 <programlisting>
3969 assert pred val ==> assertError "Main.hs|15" pred val
3970 </programlisting>
3971
3972 </para>
3973
3974 <para>
3975 The rewrite is only performed by the compiler when it spots
3976 applications of <function>Control.Exception.assert</function>, so you
3977 can still define and use your own versions of
3978 <function>assert</function>, should you so wish. If not, import
3979 <literal>Control.Exception</literal> to make use
3980 <function>assert</function> in your code.
3981 </para>
3982
3983 <para>
3984 To have the compiler ignore uses of assert, use the compiler option
3985 <option>-fignore-asserts</option>. <indexterm><primary>-fignore-asserts
3986 option</primary></indexterm> That is, expressions of the form
3987 <literal>assert pred e</literal> will be rewritten to
3988 <literal>e</literal>.
3989 </para>
3990
3991 <para>
3992 Assertion failures can be caught, see the documentation for the
3993 <literal>Control.Exception</literal> library for the details.
3994 </para>
3995
3996 </sect1>
3997
3998
3999 <!-- =============================== PRAGMAS ===========================  -->
4000
4001   <sect1 id="pragmas">
4002     <title>Pragmas</title>
4003
4004     <indexterm><primary>pragma</primary></indexterm>
4005
4006     <para>GHC supports several pragmas, or instructions to the
4007     compiler placed in the source code.  Pragmas don't normally affect
4008     the meaning of the program, but they might affect the efficiency
4009     of the generated code.</para>
4010
4011     <para>Pragmas all take the form
4012
4013 <literal>{-# <replaceable>word</replaceable> ... #-}</literal>  
4014
4015     where <replaceable>word</replaceable> indicates the type of
4016     pragma, and is followed optionally by information specific to that
4017     type of pragma.  Case is ignored in
4018     <replaceable>word</replaceable>.  The various values for
4019     <replaceable>word</replaceable> that GHC understands are described
4020     in the following sections; any pragma encountered with an
4021     unrecognised <replaceable>word</replaceable> is (silently)
4022     ignored.</para>
4023
4024     <sect2 id="deprecated-pragma">
4025       <title>DEPRECATED pragma</title>
4026       <indexterm><primary>DEPRECATED</primary>
4027       </indexterm>
4028
4029       <para>The DEPRECATED pragma lets you specify that a particular
4030       function, class, or type, is deprecated.  There are two
4031       forms.
4032
4033       <itemizedlist>
4034         <listitem>
4035           <para>You can deprecate an entire module thus:</para>
4036 <programlisting>
4037    module Wibble {-# DEPRECATED "Use Wobble instead" #-} where
4038      ...
4039 </programlisting>
4040           <para>When you compile any module that import
4041           <literal>Wibble</literal>, GHC will print the specified
4042           message.</para>
4043         </listitem>
4044
4045         <listitem>
4046           <para>You can deprecate a function, class, or type, with the
4047           following top-level declaration:</para>
4048 <programlisting>
4049    {-# DEPRECATED f, C, T "Don't use these" #-}
4050 </programlisting>
4051           <para>When you compile any module that imports and uses any
4052           of the specifed entities, GHC will print the specified
4053           message.</para>
4054         </listitem>
4055       </itemizedlist>
4056       Any use of the deprecated item, or of anything from a deprecated
4057       module, will be flagged with an appropriate message.  However,
4058       deprecations are not reported for
4059       (a) uses of a deprecated function within its defining module, and
4060       (b) uses of a deprecated function in an export list.
4061       The latter reduces spurious complaints within a library
4062       in which one module gathers together and re-exports 
4063       the exports of several others.
4064       </para>
4065       <para>You can suppress the warnings with the flag
4066       <option>-fno-warn-deprecations</option>.</para>
4067     </sect2>
4068
4069     <sect2 id="inline-noinline-pragma">
4070       <title>INLINE and NOINLINE pragmas</title>
4071
4072       <para>These pragmas control the inlining of function
4073       definitions.</para>
4074
4075       <sect3 id="inline-pragma">
4076         <title>INLINE pragma</title>
4077         <indexterm><primary>INLINE</primary></indexterm>
4078
4079         <para>GHC (with <option>-O</option>, as always) tries to
4080         inline (or &ldquo;unfold&rdquo;) functions/values that are
4081         &ldquo;small enough,&rdquo; thus avoiding the call overhead
4082         and possibly exposing other more-wonderful optimisations.
4083         Normally, if GHC decides a function is &ldquo;too
4084         expensive&rdquo; to inline, it will not do so, nor will it
4085         export that unfolding for other modules to use.</para>
4086
4087         <para>The sledgehammer you can bring to bear is the
4088         <literal>INLINE</literal><indexterm><primary>INLINE
4089         pragma</primary></indexterm> pragma, used thusly:</para>
4090
4091 <programlisting>
4092 key_function :: Int -> String -> (Bool, Double)
4093
4094 #ifdef __GLASGOW_HASKELL__
4095 {-# INLINE key_function #-}
4096 #endif
4097 </programlisting>
4098
4099         <para>(You don't need to do the C pre-processor carry-on
4100         unless you're going to stick the code through HBC&mdash;it
4101         doesn't like <literal>INLINE</literal> pragmas.)</para>
4102
4103         <para>The major effect of an <literal>INLINE</literal> pragma
4104         is to declare a function's &ldquo;cost&rdquo; to be very low.
4105         The normal unfolding machinery will then be very keen to
4106         inline it.</para>
4107
4108         <para>Syntactially, an <literal>INLINE</literal> pragma for a
4109         function can be put anywhere its type signature could be
4110         put.</para>
4111
4112         <para><literal>INLINE</literal> pragmas are a particularly
4113         good idea for the
4114         <literal>then</literal>/<literal>return</literal> (or
4115         <literal>bind</literal>/<literal>unit</literal>) functions in
4116         a monad.  For example, in GHC's own
4117         <literal>UniqueSupply</literal> monad code, we have:</para>
4118
4119 <programlisting>
4120 #ifdef __GLASGOW_HASKELL__
4121 {-# INLINE thenUs #-}
4122 {-# INLINE returnUs #-}
4123 #endif
4124 </programlisting>
4125
4126         <para>See also the <literal>NOINLINE</literal> pragma (<xref
4127         linkend="noinline-pragma">).</para>
4128       </sect3>
4129
4130       <sect3 id="noinline-pragma">
4131         <title>NOINLINE pragma</title>
4132         
4133         <indexterm><primary>NOINLINE</primary></indexterm>
4134         <indexterm><primary>NOTINLINE</primary></indexterm>
4135
4136         <para>The <literal>NOINLINE</literal> pragma does exactly what
4137         you'd expect: it stops the named function from being inlined
4138         by the compiler.  You shouldn't ever need to do this, unless
4139         you're very cautious about code size.</para>
4140
4141         <para><literal>NOTINLINE</literal> is a synonym for
4142         <literal>NOINLINE</literal> (<literal>NOTINLINE</literal> is
4143         specified by Haskell 98 as the standard way to disable
4144         inlining, so it should be used if you want your code to be
4145         portable).</para>
4146       </sect3>
4147
4148       <sect3 id="phase-control">
4149         <title>Phase control</title>
4150
4151         <para> Sometimes you want to control exactly when in GHC's
4152         pipeline the INLINE pragma is switched on.  Inlining happens
4153         only during runs of the <emphasis>simplifier</emphasis>.  Each
4154         run of the simplifier has a different <emphasis>phase
4155         number</emphasis>; the phase number decreases towards zero.
4156         If you use <option>-dverbose-core2core</option> you'll see the
4157         sequence of phase numbers for successive runs of the
4158         simpifier.  In an INLINE pragma you can optionally specify a
4159         phase number, thus:</para>
4160
4161         <itemizedlist>
4162           <listitem>
4163             <para>You can say "inline <literal>f</literal> in Phase 2
4164             and all subsequent phases":
4165 <programlisting>
4166   {-# INLINE [2] f #-}
4167 </programlisting>
4168             </para>
4169           </listitem>
4170
4171           <listitem>
4172             <para>You can say "inline <literal>g</literal> in all
4173             phases up to, but not including, Phase 3":
4174 <programlisting>
4175   {-# INLINE [~3] g #-}
4176 </programlisting>
4177             </para>
4178           </listitem>
4179
4180           <listitem>
4181             <para>If you omit the phase indicator, you mean "inline in
4182             all phases".</para>
4183           </listitem>
4184         </itemizedlist>
4185
4186         <para>You can use a phase number on a NOINLINE pragma too:</para>
4187
4188         <itemizedlist>
4189           <listitem>
4190             <para>You can say "do not inline <literal>f</literal>
4191             until Phase 2; in Phase 2 and subsequently behave as if
4192             there was no pragma at all":
4193 <programlisting>
4194   {-# NOINLINE [2] f #-}
4195 </programlisting>
4196             </para>
4197           </listitem>
4198
4199           <listitem>
4200             <para>You can say "do not inline <literal>g</literal> in
4201             Phase 3 or any subsequent phase; before that, behave as if
4202             there was no pragma":
4203 <programlisting>
4204   {-# NOINLINE [~3] g #-}
4205 </programlisting>
4206             </para>
4207           </listitem>
4208
4209           <listitem>
4210             <para>If you omit the phase indicator, you mean "never
4211             inline this function".</para>
4212           </listitem>
4213         </itemizedlist>
4214
4215         <para>The same phase-numbering control is available for RULES
4216         (<xref LinkEnd="rewrite-rules">).</para>
4217       </sect3>
4218     </sect2>
4219
4220     <sect2 id="line-pragma">
4221       <title>LINE pragma</title>
4222
4223       <indexterm><primary>LINE</primary><secondary>pragma</secondary></indexterm>
4224       <indexterm><primary>pragma</primary><secondary>LINE</secondary></indexterm>
4225       <para>This pragma is similar to C's <literal>&num;line</literal>
4226       pragma, and is mainly for use in automatically generated Haskell
4227       code.  It lets you specify the line number and filename of the
4228       original code; for example</para>
4229
4230 <programlisting>
4231 {-# LINE 42 "Foo.vhs" #-}
4232 </programlisting>
4233
4234       <para>if you'd generated the current file from something called
4235       <filename>Foo.vhs</filename> and this line corresponds to line
4236       42 in the original.  GHC will adjust its error messages to refer
4237       to the line/file named in the <literal>LINE</literal>
4238       pragma.</para>
4239     </sect2>
4240
4241     <sect2 id="options-pragma">
4242       <title>OPTIONS pragma</title>
4243       <indexterm><primary>OPTIONS</primary>
4244       </indexterm>
4245       <indexterm><primary>pragma</primary><secondary>OPTIONS</secondary>
4246       </indexterm>
4247
4248       <para>The <literal>OPTIONS</literal> pragma is used to specify
4249       additional options that are given to the compiler when compiling
4250       this source file.  See <xref linkend="source-file-options"> for
4251       details.</para>
4252     </sect2>
4253
4254     <sect2 id="rules">
4255       <title>RULES pragma</title>
4256
4257       <para>The RULES pragma lets you specify rewrite rules.  It is
4258       described in <xref LinkEnd="rewrite-rules">.</para>
4259     </sect2>
4260
4261     <sect2 id="specialize-pragma">
4262       <title>SPECIALIZE pragma</title>
4263
4264       <indexterm><primary>SPECIALIZE pragma</primary></indexterm>
4265       <indexterm><primary>pragma, SPECIALIZE</primary></indexterm>
4266       <indexterm><primary>overloading, death to</primary></indexterm>
4267
4268       <para>(UK spelling also accepted.)  For key overloaded
4269       functions, you can create extra versions (NB: more code space)
4270       specialised to particular types.  Thus, if you have an
4271       overloaded function:</para>
4272
4273 <programlisting>
4274 hammeredLookup :: Ord key => [(key, value)] -> key -> value
4275 </programlisting>
4276
4277       <para>If it is heavily used on lists with
4278       <literal>Widget</literal> keys, you could specialise it as
4279       follows:</para>
4280
4281 <programlisting>
4282 {-# SPECIALIZE hammeredLookup :: [(Widget, value)] -> Widget -> value #-}
4283 </programlisting>
4284
4285       <para>A <literal>SPECIALIZE</literal> pragma for a function can
4286       be put anywhere its type signature could be put.</para>
4287
4288 <para>A <literal>SPECIALIZE</literal> has the effect of generating (a) a specialised
4289 version of the function and (b) a rewrite rule (see <xref linkend="rules">) that 
4290 rewrites a call to the un-specialised function into a call to the specialised
4291 one. You can, instead, provide your own specialised function and your own rewrite rule.
4292 For example, suppose that:
4293 <programlisting>
4294   genericLookup :: Ord a => Table a b   -> a   -> b
4295   intLookup     ::          Table Int b -> Int -> b
4296 </programlisting>
4297 where <literal>intLookup</literal> is an implementation of <literal>genericLookup</literal>
4298 that works very fast for keys of type <literal>Int</literal>.  Then you can write the rule
4299 <programlisting>
4300   {-# RULES "intLookup" genericLookup = intLookup #-}
4301 </programlisting>
4302 (see <xref linkend="rule-spec">). It is <emphasis>Your
4303       Responsibility</emphasis> to make sure that
4304       <function>intLookup</function> really behaves as a specialised
4305       version of <function>genericLookup</function>!!!</para>
4306
4307       <para>An example in which using <literal>RULES</literal> for
4308       specialisation will Win Big:
4309
4310 <programlisting>
4311   toDouble :: Real a => a -> Double
4312   toDouble = fromRational . toRational
4313
4314   {-# RULES "toDouble/Int" toDouble = i2d #-}
4315   i2d (I# i) = D# (int2Double# i) -- uses Glasgow prim-op directly
4316 </programlisting>
4317
4318       The <function>i2d</function> function is virtually one machine
4319       instruction; the default conversion&mdash;via an intermediate
4320       <literal>Rational</literal>&mdash;is obscenely expensive by
4321       comparison.</para>
4322
4323     </sect2>
4324
4325 <sect2 id="specialize-instance-pragma">
4326 <title>SPECIALIZE instance pragma
4327 </title>
4328
4329 <para>
4330 <indexterm><primary>SPECIALIZE pragma</primary></indexterm>
4331 <indexterm><primary>overloading, death to</primary></indexterm>
4332 Same idea, except for instance declarations.  For example:
4333
4334 <programlisting>
4335 instance (Eq a) => Eq (Foo a) where { 
4336    {-# SPECIALIZE instance Eq (Foo [(Int, Bar)]) #-}
4337    ... usual stuff ...
4338  }
4339 </programlisting>
4340 The pragma must occur inside the <literal>where</literal> part
4341 of the instance declaration.
4342 </para>
4343 <para>
4344 Compatible with HBC, by the way, except perhaps in the placement
4345 of the pragma.
4346 </para>
4347
4348 </sect2>
4349
4350     <sect2 id="unpack-pragma">
4351       <title>UNPACK pragma</title>
4352
4353       <indexterm><primary>UNPACK</primary></indexterm>
4354       
4355       <para>The <literal>UNPACK</literal> indicates to the compiler
4356       that it should unpack the contents of a constructor field into
4357       the constructor itself, removing a level of indirection.  For
4358       example:</para>
4359
4360 <ProgramListing>
4361 data T = T {-# UNPACK #-} !Float
4362            {-# UNPACK #-} !Float
4363 </ProgramListing>
4364
4365       <para>will create a constructor <literal>T</literal> containing
4366       two unboxed floats.  This may not always be an optimisation: if
4367       the <Function>T</Function> constructor is scrutinised and the
4368       floats passed to a non-strict function for example, they will
4369       have to be reboxed (this is done automatically by the
4370       compiler).</para>
4371
4372       <para>Unpacking constructor fields should only be used in
4373       conjunction with <option>-O</option>, in order to expose
4374       unfoldings to the compiler so the reboxing can be removed as
4375       often as possible.  For example:</para>
4376
4377 <ProgramListing>
4378 f :: T -&#62; Float
4379 f (T f1 f2) = f1 + f2
4380 </ProgramListing>
4381
4382       <para>The compiler will avoid reboxing <Function>f1</Function>
4383       and <Function>f2</Function> by inlining <Function>+</Function>
4384       on floats, but only when <option>-O</option> is on.</para>
4385
4386       <para>Any single-constructor data is eligible for unpacking; for
4387       example</para>
4388
4389 <ProgramListing>
4390 data T = T {-# UNPACK #-} !(Int,Int)
4391 </ProgramListing>
4392
4393       <para>will store the two <literal>Int</literal>s directly in the
4394       <Function>T</Function> constructor, by flattening the pair.
4395       Multi-level unpacking is also supported:</para>
4396
4397 <ProgramListing>
4398 data T = T {-# UNPACK #-} !S
4399 data S = S {-# UNPACK #-} !Int {-# UNPACK #-} !Int
4400 </ProgramListing>
4401
4402       <para>will store two unboxed <literal>Int&num;</literal>s
4403       directly in the <Function>T</Function> constructor.  The
4404       unpacker can see through newtypes, too.</para>
4405
4406       <para>If a field cannot be unpacked, you will not get a warning,
4407       so it might be an idea to check the generated code with
4408       <option>-ddump-simpl</option>.</para>
4409
4410       <para>See also the <option>-funbox-strict-fields</option> flag,
4411       which essentially has the effect of adding
4412       <literal>{-#&nbsp;UNPACK&nbsp;#-}</literal> to every strict
4413       constructor field.</para>
4414     </sect2>
4415
4416 </sect1>
4417
4418 <!--  ======================= REWRITE RULES ======================== -->
4419
4420 <sect1 id="rewrite-rules">
4421 <title>Rewrite rules
4422
4423 <indexterm><primary>RULES pagma</primary></indexterm>
4424 <indexterm><primary>pragma, RULES</primary></indexterm>
4425 <indexterm><primary>rewrite rules</primary></indexterm></title>
4426
4427 <para>
4428 The programmer can specify rewrite rules as part of the source program
4429 (in a pragma).  GHC applies these rewrite rules wherever it can, provided (a) 
4430 the <option>-O</option> flag (<xref LinkEnd="options-optimise">) is on, 
4431 and (b) the <option>-frules-off</option> flag
4432 (<xref LinkEnd="options-f">) is not specified.
4433 </para>
4434
4435 <para>
4436 Here is an example:
4437
4438 <programlisting>
4439   {-# RULES
4440         "map/map"       forall f g xs. map f (map g xs) = map (f.g) xs
4441   #-}
4442 </programlisting>
4443
4444 </para>
4445
4446 <sect2>
4447 <title>Syntax</title>
4448
4449 <para>
4450 From a syntactic point of view:
4451
4452 <itemizedlist>
4453 <listitem>
4454
4455 <para>
4456  There may be zero or more rules in a <literal>RULES</literal> pragma.
4457 </para>
4458 </listitem>
4459
4460 <listitem>
4461
4462 <para>
4463  Each rule has a name, enclosed in double quotes.  The name itself has
4464 no significance at all.  It is only used when reporting how many times the rule fired.
4465 </para>
4466 </listitem>
4467
4468 <listitem>
4469 <para>
4470 A rule may optionally have a phase-control number (see <xref LinkEnd="phase-control">),
4471 immediately after the name of the rule.  Thus:
4472 <programlisting>
4473   {-# RULES
4474         "map/map" [2]  forall f g xs. map f (map g xs) = map (f.g) xs
4475   #-}
4476 </programlisting>
4477 The "[2]" means that the rule is active in Phase 2 and subsequent phases.  The inverse
4478 notation "[~2]" is also accepted, meaning that the rule is active up to, but not including,
4479 Phase 2.
4480 </para>
4481 </listitem>
4482
4483
4484 <listitem>
4485
4486 <para>
4487  Layout applies in a <literal>RULES</literal> pragma.  Currently no new indentation level
4488 is set, so you must lay out your rules starting in the same column as the
4489 enclosing definitions.
4490 </para>
4491 </listitem>
4492
4493 <listitem>
4494
4495 <para>
4496  Each variable mentioned in a rule must either be in scope (e.g. <function>map</function>),
4497 or bound by the <literal>forall</literal> (e.g. <function>f</function>, <function>g</function>, <function>xs</function>).  The variables bound by
4498 the <literal>forall</literal> are called the <emphasis>pattern</emphasis> variables.  They are separated
4499 by spaces, just like in a type <literal>forall</literal>.
4500 </para>
4501 </listitem>
4502 <listitem>
4503
4504 <para>
4505  A pattern variable may optionally have a type signature.
4506 If the type of the pattern variable is polymorphic, it <emphasis>must</emphasis> have a type signature.
4507 For example, here is the <literal>foldr/build</literal> rule:
4508
4509 <programlisting>
4510 "fold/build"  forall k z (g::forall b. (a->b->b) -> b -> b) .
4511               foldr k z (build g) = g k z
4512 </programlisting>
4513
4514 Since <function>g</function> has a polymorphic type, it must have a type signature.
4515
4516 </para>
4517 </listitem>
4518 <listitem>
4519
4520 <para>
4521 The left hand side of a rule must consist of a top-level variable applied
4522 to arbitrary expressions.  For example, this is <emphasis>not</emphasis> OK:
4523
4524 <programlisting>
4525 "wrong1"   forall e1 e2.  case True of { True -> e1; False -> e2 } = e1
4526 "wrong2"   forall f.      f True = True
4527 </programlisting>
4528
4529 In <literal>"wrong1"</literal>, the LHS is not an application; in <literal>"wrong2"</literal>, the LHS has a pattern variable
4530 in the head.
4531 </para>
4532 </listitem>
4533 <listitem>
4534
4535 <para>
4536  A rule does not need to be in the same module as (any of) the
4537 variables it mentions, though of course they need to be in scope.
4538 </para>
4539 </listitem>
4540 <listitem>
4541
4542 <para>
4543  Rules are automatically exported from a module, just as instance declarations are.
4544 </para>
4545 </listitem>
4546
4547 </itemizedlist>
4548
4549 </para>
4550
4551 </sect2>
4552
4553 <sect2>
4554 <title>Semantics</title>
4555
4556 <para>
4557 From a semantic point of view:
4558
4559 <itemizedlist>
4560 <listitem>
4561
4562 <para>
4563 Rules are only applied if you use the <option>-O</option> flag.
4564 </para>
4565 </listitem>
4566
4567 <listitem>
4568 <para>
4569  Rules are regarded as left-to-right rewrite rules.
4570 When GHC finds an expression that is a substitution instance of the LHS
4571 of a rule, it replaces the expression by the (appropriately-substituted) RHS.
4572 By "a substitution instance" we mean that the LHS can be made equal to the
4573 expression by substituting for the pattern variables.
4574
4575 </para>
4576 </listitem>
4577 <listitem>
4578
4579 <para>
4580  The LHS and RHS of a rule are typechecked, and must have the
4581 same type.
4582
4583 </para>
4584 </listitem>
4585 <listitem>
4586
4587 <para>
4588  GHC makes absolutely no attempt to verify that the LHS and RHS
4589 of a rule have the same meaning.  That is undecideable in general, and
4590 infeasible in most interesting cases.  The responsibility is entirely the programmer's!
4591
4592 </para>
4593 </listitem>
4594 <listitem>
4595
4596 <para>
4597  GHC makes no attempt to make sure that the rules are confluent or
4598 terminating.  For example:
4599
4600 <programlisting>
4601   "loop"        forall x,y.  f x y = f y x
4602 </programlisting>
4603
4604 This rule will cause the compiler to go into an infinite loop.
4605
4606 </para>
4607 </listitem>
4608 <listitem>
4609
4610 <para>
4611  If more than one rule matches a call, GHC will choose one arbitrarily to apply.
4612
4613 </para>
4614 </listitem>
4615 <listitem>
4616 <para>
4617  GHC currently uses a very simple, syntactic, matching algorithm
4618 for matching a rule LHS with an expression.  It seeks a substitution
4619 which makes the LHS and expression syntactically equal modulo alpha
4620 conversion.  The pattern (rule), but not the expression, is eta-expanded if
4621 necessary.  (Eta-expanding the epression can lead to laziness bugs.)
4622 But not beta conversion (that's called higher-order matching).
4623 </para>
4624
4625 <para>
4626 Matching is carried out on GHC's intermediate language, which includes
4627 type abstractions and applications.  So a rule only matches if the
4628 types match too.  See <xref LinkEnd="rule-spec"> below.
4629 </para>
4630 </listitem>
4631 <listitem>
4632
4633 <para>
4634  GHC keeps trying to apply the rules as it optimises the program.
4635 For example, consider:
4636
4637 <programlisting>
4638   let s = map f
4639       t = map g
4640   in
4641   s (t xs)
4642 </programlisting>
4643
4644 The expression <literal>s (t xs)</literal> does not match the rule <literal>"map/map"</literal>, but GHC
4645 will substitute for <VarName>s</VarName> and <VarName>t</VarName>, giving an expression which does match.
4646 If <VarName>s</VarName> or <VarName>t</VarName> was (a) used more than once, and (b) large or a redex, then it would
4647 not be substituted, and the rule would not fire.
4648
4649 </para>
4650 </listitem>
4651 <listitem>
4652
4653 <para>
4654  In the earlier phases of compilation, GHC inlines <emphasis>nothing
4655 that appears on the LHS of a rule</emphasis>, because once you have substituted
4656 for something you can't match against it (given the simple minded
4657 matching).  So if you write the rule
4658
4659 <programlisting>
4660         "map/map"       forall f,g.  map f . map g = map (f.g)
4661 </programlisting>
4662
4663 this <emphasis>won't</emphasis> match the expression <literal>map f (map g xs)</literal>.
4664 It will only match something written with explicit use of ".".
4665 Well, not quite.  It <emphasis>will</emphasis> match the expression
4666
4667 <programlisting>
4668 wibble f g xs
4669 </programlisting>
4670
4671 where <function>wibble</function> is defined:
4672
4673 <programlisting>
4674 wibble f g = map f . map g
4675 </programlisting>
4676
4677 because <function>wibble</function> will be inlined (it's small).
4678
4679 Later on in compilation, GHC starts inlining even things on the
4680 LHS of rules, but still leaves the rules enabled.  This inlining
4681 policy is controlled by the per-simplification-pass flag <option>-finline-phase</option><emphasis>n</emphasis>.
4682
4683 </para>
4684 </listitem>
4685 <listitem>
4686
4687 <para>
4688  All rules are implicitly exported from the module, and are therefore
4689 in force in any module that imports the module that defined the rule, directly
4690 or indirectly.  (That is, if A imports B, which imports C, then C's rules are
4691 in force when compiling A.)  The situation is very similar to that for instance
4692 declarations.
4693 </para>
4694 </listitem>
4695
4696 </itemizedlist>
4697
4698 </para>
4699
4700 </sect2>
4701
4702 <sect2>
4703 <title>List fusion</title>
4704
4705 <para>
4706 The RULES mechanism is used to implement fusion (deforestation) of common list functions.
4707 If a "good consumer" consumes an intermediate list constructed by a "good producer", the
4708 intermediate list should be eliminated entirely.
4709 </para>
4710
4711 <para>
4712 The following are good producers:
4713
4714 <itemizedlist>
4715 <listitem>
4716
4717 <para>
4718  List comprehensions
4719 </para>
4720 </listitem>
4721 <listitem>
4722
4723 <para>
4724  Enumerations of <literal>Int</literal> and <literal>Char</literal> (e.g. <literal>['a'..'z']</literal>).
4725 </para>
4726 </listitem>
4727 <listitem>
4728
4729 <para>
4730  Explicit lists (e.g. <literal>[True, False]</literal>)
4731 </para>
4732 </listitem>
4733 <listitem>
4734
4735 <para>
4736  The cons constructor (e.g <literal>3:4:[]</literal>)
4737 </para>
4738 </listitem>
4739 <listitem>
4740
4741 <para>
4742  <function>++</function>
4743 </para>
4744 </listitem>
4745
4746 <listitem>
4747 <para>
4748  <function>map</function>
4749 </para>
4750 </listitem>
4751
4752 <listitem>
4753 <para>
4754  <function>filter</function>
4755 </para>
4756 </listitem>
4757 <listitem>
4758
4759 <para>
4760  <function>iterate</function>, <function>repeat</function>
4761 </para>
4762 </listitem>
4763 <listitem>
4764
4765 <para>
4766  <function>zip</function>, <function>zipWith</function>
4767 </para>
4768 </listitem>
4769
4770 </itemizedlist>
4771
4772 </para>
4773
4774 <para>
4775 The following are good consumers:
4776
4777 <itemizedlist>
4778 <listitem>
4779
4780 <para>
4781  List comprehensions
4782 </para>
4783 </listitem>
4784 <listitem>
4785
4786 <para>
4787  <function>array</function> (on its second argument)
4788 </para>
4789 </listitem>
4790 <listitem>
4791
4792 <para>
4793  <function>length</function>
4794 </para>
4795 </listitem>
4796 <listitem>
4797
4798 <para>
4799  <function>++</function> (on its first argument)
4800 </para>
4801 </listitem>
4802
4803 <listitem>
4804 <para>
4805  <function>foldr</function>
4806 </para>
4807 </listitem>
4808
4809 <listitem>
4810 <para>
4811  <function>map</function>
4812 </para>
4813 </listitem>
4814 <listitem>
4815
4816 <para>
4817  <function>filter</function>
4818 </para>
4819 </listitem>
4820 <listitem>
4821
4822 <para>
4823  <function>concat</function>
4824 </para>
4825 </listitem>
4826 <listitem>
4827
4828 <para>
4829  <function>unzip</function>, <function>unzip2</function>, <function>unzip3</function>, <function>unzip4</function>
4830 </para>
4831 </listitem>
4832 <listitem>
4833
4834 <para>
4835  <function>zip</function>, <function>zipWith</function> (but on one argument only; if both are good producers, <function>zip</function>
4836 will fuse with one but not the other)
4837 </para>
4838 </listitem>
4839 <listitem>
4840
4841 <para>
4842  <function>partition</function>
4843 </para>
4844 </listitem>
4845 <listitem>
4846
4847 <para>
4848  <function>head</function>
4849 </para>
4850 </listitem>
4851 <listitem>
4852
4853 <para>
4854  <function>and</function>, <function>or</function>, <function>any</function>, <function>all</function>
4855 </para>
4856 </listitem>
4857 <listitem>
4858
4859 <para>
4860  <function>sequence&lowbar;</function>
4861 </para>
4862 </listitem>
4863 <listitem>
4864
4865 <para>
4866  <function>msum</function>
4867 </para>
4868 </listitem>
4869 <listitem>
4870
4871 <para>
4872  <function>sortBy</function>
4873 </para>
4874 </listitem>
4875
4876 </itemizedlist>
4877
4878 </para>
4879
4880  <para>
4881 So, for example, the following should generate no intermediate lists:
4882
4883 <programlisting>
4884 array (1,10) [(i,i*i) | i &#60;- map (+ 1) [0..9]]
4885 </programlisting>
4886
4887 </para>
4888
4889 <para>
4890 This list could readily be extended; if there are Prelude functions that you use
4891 a lot which are not included, please tell us.
4892 </para>
4893
4894 <para>
4895 If you want to write your own good consumers or producers, look at the
4896 Prelude definitions of the above functions to see how to do so.
4897 </para>
4898
4899 </sect2>
4900
4901 <sect2 id="rule-spec">
4902 <title>Specialisation
4903 </title>
4904
4905 <para>
4906 Rewrite rules can be used to get the same effect as a feature
4907 present in earlier version of GHC:
4908
4909 <programlisting>
4910   {-# SPECIALIZE fromIntegral :: Int8 -> Int16 = int8ToInt16 #-}
4911 </programlisting>
4912
4913 This told GHC to use <function>int8ToInt16</function> instead of <function>fromIntegral</function> whenever
4914 the latter was called with type <literal>Int8 -&gt; Int16</literal>.  That is, rather than
4915 specialising the original definition of <function>fromIntegral</function> the programmer is
4916 promising that it is safe to use <function>int8ToInt16</function> instead.
4917 </para>
4918
4919 <para>
4920 This feature is no longer in GHC.  But rewrite rules let you do the
4921 same thing:
4922
4923 <programlisting>
4924 {-# RULES
4925   "fromIntegral/Int8/Int16" fromIntegral = int8ToInt16
4926 #-}
4927 </programlisting>
4928
4929 This slightly odd-looking rule instructs GHC to replace <function>fromIntegral</function>
4930 by <function>int8ToInt16</function> <emphasis>whenever the types match</emphasis>.  Speaking more operationally,
4931 GHC adds the type and dictionary applications to get the typed rule
4932
4933 <programlisting>
4934 forall (d1::Integral Int8) (d2::Num Int16) .
4935         fromIntegral Int8 Int16 d1 d2 = int8ToInt16
4936 </programlisting>
4937
4938 What is more,
4939 this rule does not need to be in the same file as fromIntegral,
4940 unlike the <literal>SPECIALISE</literal> pragmas which currently do (so that they
4941 have an original definition available to specialise).
4942 </para>
4943
4944 </sect2>
4945
4946 <sect2>
4947 <title>Controlling what's going on</title>
4948
4949 <para>
4950
4951 <itemizedlist>
4952 <listitem>
4953
4954 <para>
4955  Use <option>-ddump-rules</option> to see what transformation rules GHC is using.
4956 </para>
4957 </listitem>
4958 <listitem>
4959
4960 <para>
4961  Use <option>-ddump-simpl-stats</option> to see what rules are being fired.
4962 If you add <option>-dppr-debug</option> you get a more detailed listing.
4963 </para>
4964 </listitem>
4965 <listitem>
4966
4967 <para>
4968  The defintion of (say) <function>build</function> in <FileName>GHC/Base.lhs</FileName> looks llike this:
4969
4970 <programlisting>
4971         build   :: forall a. (forall b. (a -> b -> b) -> b -> b) -> [a]
4972         {-# INLINE build #-}
4973         build g = g (:) []
4974 </programlisting>
4975
4976 Notice the <literal>INLINE</literal>!  That prevents <literal>(:)</literal> from being inlined when compiling
4977 <literal>PrelBase</literal>, so that an importing module will &ldquo;see&rdquo; the <literal>(:)</literal>, and can
4978 match it on the LHS of a rule.  <literal>INLINE</literal> prevents any inlining happening
4979 in the RHS of the <literal>INLINE</literal> thing.  I regret the delicacy of this.
4980
4981 </para>
4982 </listitem>
4983 <listitem>
4984
4985 <para>
4986  In <filename>libraries/base/GHC/Base.lhs</filename> look at the rules for <function>map</function> to
4987 see how to write rules that will do fusion and yet give an efficient
4988 program even if fusion doesn't happen.  More rules in <filename>GHC/List.lhs</filename>.
4989 </para>
4990 </listitem>
4991
4992 </itemizedlist>
4993
4994 </para>
4995
4996 </sect2>
4997
4998 <sect2 id="core-pragma">
4999   <title>CORE pragma</title>
5000
5001   <indexterm><primary>CORE pragma</primary></indexterm>
5002   <indexterm><primary>pragma, CORE</primary></indexterm>
5003   <indexterm><primary>core, annotation</primary></indexterm>
5004
5005 <para>
5006   The external core format supports <quote>Note</quote> annotations;
5007   the <literal>CORE</literal> pragma gives a way to specify what these
5008   should be in your Haskell source code.  Syntactically, core
5009   annotations are attached to expressions and take a Haskell string
5010   literal as an argument.  The following function definition shows an
5011   example:
5012
5013 <programlisting>
5014 f x = ({-# CORE "foo" #-} show) ({-# CORE "bar" #-} x)
5015 </programlisting>
5016
5017   Sematically, this is equivalent to:
5018
5019 <programlisting>
5020 g x = show x
5021 </programlisting>
5022 </para>
5023
5024 <para>
5025   However, when external for is generated (via
5026   <option>-fext-core</option>), there will be Notes attached to the
5027   expressions <function>show</function> and <VarName>x</VarName>.
5028   The core function declaration for <function>f</function> is:
5029 </para>
5030
5031 <programlisting>
5032   f :: %forall a . GHCziShow.ZCTShow a ->
5033                    a -> GHCziBase.ZMZN GHCziBase.Char =
5034     \ @ a (zddShow::GHCziShow.ZCTShow a) (eta::a) ->
5035         (%note "foo"
5036          %case zddShow %of (tpl::GHCziShow.ZCTShow a)
5037            {GHCziShow.ZCDShow
5038             (tpl1::GHCziBase.Int ->
5039                    a ->
5040                    GHCziBase.ZMZN GHCziBase.Char -> GHCziBase.ZMZN GHCziBase.Cha
5041 r)
5042             (tpl2::a -> GHCziBase.ZMZN GHCziBase.Char)
5043             (tpl3::GHCziBase.ZMZN a ->
5044                    GHCziBase.ZMZN GHCziBase.Char -> GHCziBase.ZMZN GHCziBase.Cha
5045 r) ->
5046               tpl2})
5047         (%note "foo"
5048          eta);
5049 </programlisting>
5050
5051 <para>
5052   Here, we can see that the function <function>show</function> (which
5053   has been expanded out to a case expression over the Show dictionary)
5054   has a <literal>%note</literal> attached to it, as does the
5055   expression <VarName>eta</VarName> (which used to be called
5056   <VarName>x</VarName>).
5057 </para>
5058
5059 </sect2>
5060
5061 </sect1>
5062
5063 <sect1 id="generic-classes">
5064 <title>Generic classes</title>
5065
5066     <para>(Note: support for generic classes is currently broken in
5067     GHC 5.02).</para>
5068
5069 <para>
5070 The ideas behind this extension are described in detail in "Derivable type classes",
5071 Ralf Hinze and Simon Peyton Jones, Haskell Workshop, Montreal Sept 2000, pp94-105.
5072 An example will give the idea:
5073 </para>
5074
5075 <programlisting>
5076   import Generics
5077
5078   class Bin a where
5079     toBin   :: a -> [Int]
5080     fromBin :: [Int] -> (a, [Int])
5081   
5082     toBin {| Unit |}    Unit      = []
5083     toBin {| a :+: b |} (Inl x)   = 0 : toBin x
5084     toBin {| a :+: b |} (Inr y)   = 1 : toBin y
5085     toBin {| a :*: b |} (x :*: y) = toBin x ++ toBin y
5086   
5087     fromBin {| Unit |}    bs      = (Unit, bs)
5088     fromBin {| a :+: b |} (0:bs)  = (Inl x, bs')    where (x,bs') = fromBin bs
5089     fromBin {| a :+: b |} (1:bs)  = (Inr y, bs')    where (y,bs') = fromBin bs
5090     fromBin {| a :*: b |} bs      = (x :*: y, bs'') where (x,bs' ) = fromBin bs
5091                                                           (y,bs'') = fromBin bs'
5092 </programlisting>
5093 <para>
5094 This class declaration explains how <literal>toBin</literal> and <literal>fromBin</literal>
5095 work for arbitrary data types.  They do so by giving cases for unit, product, and sum,
5096 which are defined thus in the library module <literal>Generics</literal>:
5097 </para>
5098 <programlisting>
5099   data Unit    = Unit
5100   data a :+: b = Inl a | Inr b
5101   data a :*: b = a :*: b
5102 </programlisting>
5103 <para>
5104 Now you can make a data type into an instance of Bin like this:
5105 <programlisting>
5106   instance (Bin a, Bin b) => Bin (a,b)
5107   instance Bin a => Bin [a]
5108 </programlisting>
5109 That is, just leave off the "where" clause.  Of course, you can put in the
5110 where clause and over-ride whichever methods you please.
5111 </para>
5112
5113     <sect2>
5114       <title> Using generics </title>
5115       <para>To use generics you need to</para>
5116       <itemizedlist>
5117         <listitem>
5118           <para>Use the flags <option>-fglasgow-exts</option> (to enable the extra syntax), 
5119                 <option>-fgenerics</option> (to generate extra per-data-type code),
5120                 and <option>-package lang</option> (to make the <literal>Generics</literal> library
5121                 available.  </para>
5122         </listitem>
5123         <listitem>
5124           <para>Import the module <literal>Generics</literal> from the
5125           <literal>lang</literal> package.  This import brings into
5126           scope the data types <literal>Unit</literal>,
5127           <literal>:*:</literal>, and <literal>:+:</literal>.  (You
5128           don't need this import if you don't mention these types
5129           explicitly; for example, if you are simply giving instance
5130           declarations.)</para>
5131         </listitem>
5132       </itemizedlist>
5133     </sect2>
5134
5135 <sect2> <title> Changes wrt the paper </title>
5136 <para>
5137 Note that the type constructors <literal>:+:</literal> and <literal>:*:</literal> 
5138 can be written infix (indeed, you can now use
5139 any operator starting in a colon as an infix type constructor).  Also note that
5140 the type constructors are not exactly as in the paper (Unit instead of 1, etc).
5141 Finally, note that the syntax of the type patterns in the class declaration
5142 uses "<literal>{|</literal>" and "<literal>|}</literal>" brackets; curly braces
5143 alone would ambiguous when they appear on right hand sides (an extension we 
5144 anticipate wanting).
5145 </para>
5146 </sect2>
5147
5148 <sect2> <title>Terminology and restrictions</title>
5149 <para>
5150 Terminology.  A "generic default method" in a class declaration
5151 is one that is defined using type patterns as above.
5152 A "polymorphic default method" is a default method defined as in Haskell 98.
5153 A "generic class declaration" is a class declaration with at least one
5154 generic default method.
5155 </para>
5156
5157 <para>
5158 Restrictions:
5159 <itemizedlist>
5160 <listitem>
5161 <para>
5162 Alas, we do not yet implement the stuff about constructor names and 
5163 field labels.
5164 </para>
5165 </listitem>
5166
5167 <listitem>
5168 <para>
5169 A generic class can have only one parameter; you can't have a generic
5170 multi-parameter class.
5171 </para>
5172 </listitem>
5173
5174 <listitem>
5175 <para>
5176 A default method must be defined entirely using type patterns, or entirely
5177 without.  So this is illegal:
5178 <programlisting>
5179   class Foo a where
5180     op :: a -> (a, Bool)
5181     op {| Unit |} Unit = (Unit, True)
5182     op x               = (x,    False)
5183 </programlisting>
5184 However it is perfectly OK for some methods of a generic class to have 
5185 generic default methods and others to have polymorphic default methods.
5186 </para>
5187 </listitem>
5188
5189 <listitem>
5190 <para>
5191 The type variable(s) in the type pattern for a generic method declaration
5192 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:
5193 <programlisting>
5194   class Foo a where
5195     op :: a -> Bool
5196     op {| p :*: q |} (x :*: y) = op (x :: p)
5197     ...
5198 </programlisting>
5199 </para>
5200 </listitem>
5201
5202 <listitem>
5203 <para>
5204 The type patterns in a generic default method must take one of the forms:
5205 <programlisting>
5206        a :+: b
5207        a :*: b
5208        Unit
5209 </programlisting>
5210 where "a" and "b" are type variables.  Furthermore, all the type patterns for
5211 a single type constructor (<literal>:*:</literal>, say) must be identical; they
5212 must use the same type variables.  So this is illegal:
5213 <programlisting>
5214   class Foo a where
5215     op :: a -> Bool
5216     op {| a :+: b |} (Inl x) = True
5217     op {| p :+: q |} (Inr y) = False
5218 </programlisting>
5219 The type patterns must be identical, even in equations for different methods of the class.
5220 So this too is illegal:
5221 <programlisting>
5222   class Foo a where
5223     op1 :: a -> Bool
5224     op1 {| a :*: b |} (x :*: y) = True
5225
5226     op2 :: a -> Bool
5227     op2 {| p :*: q |} (x :*: y) = False
5228 </programlisting>
5229 (The reason for this restriction is that we gather all the equations for a particular type consructor
5230 into a single generic instance declaration.)
5231 </para>
5232 </listitem>
5233
5234 <listitem>
5235 <para>
5236 A generic method declaration must give a case for each of the three type constructors.
5237 </para>
5238 </listitem>
5239
5240 <listitem>
5241 <para>
5242 The type for a generic method can be built only from:
5243   <itemizedlist>
5244   <listitem> <para> Function arrows </para> </listitem>
5245   <listitem> <para> Type variables </para> </listitem>
5246   <listitem> <para> Tuples </para> </listitem>
5247   <listitem> <para> Arbitrary types not involving type variables </para> </listitem>
5248   </itemizedlist>
5249 Here are some example type signatures for generic methods:
5250 <programlisting>
5251     op1 :: a -> Bool
5252     op2 :: Bool -> (a,Bool)
5253     op3 :: [Int] -> a -> a
5254     op4 :: [a] -> Bool
5255 </programlisting>
5256 Here, op1, op2, op3 are OK, but op4 is rejected, because it has a type variable
5257 inside a list.  
5258 </para>
5259 <para>
5260 This restriction is an implementation restriction: we just havn't got around to
5261 implementing the necessary bidirectional maps over arbitrary type constructors.
5262 It would be relatively easy to add specific type constructors, such as Maybe and list,
5263 to the ones that are allowed.</para>
5264 </listitem>
5265
5266 <listitem>
5267 <para>
5268 In an instance declaration for a generic class, the idea is that the compiler
5269 will fill in the methods for you, based on the generic templates.  However it can only
5270 do so if
5271   <itemizedlist>
5272   <listitem>
5273   <para>
5274   The instance type is simple (a type constructor applied to type variables, as in Haskell 98).
5275   </para>
5276   </listitem>
5277   <listitem>
5278   <para>
5279   No constructor of the instance type has unboxed fields.
5280   </para>
5281   </listitem>
5282   </itemizedlist>
5283 (Of course, these things can only arise if you are already using GHC extensions.)
5284 However, you can still give an instance declarations for types which break these rules,
5285 provided you give explicit code to override any generic default methods.
5286 </para>
5287 </listitem>
5288
5289 </itemizedlist>
5290 </para>
5291
5292 <para>
5293 The option <option>-ddump-deriv</option> dumps incomprehensible stuff giving details of 
5294 what the compiler does with generic declarations.
5295 </para>
5296
5297 </sect2>
5298
5299 <sect2> <title> Another example </title>
5300 <para>
5301 Just to finish with, here's another example I rather like:
5302 <programlisting>
5303   class Tag a where
5304     nCons :: a -> Int
5305     nCons {| Unit |}    _ = 1
5306     nCons {| a :*: b |} _ = 1
5307     nCons {| a :+: b |} _ = nCons (bot::a) + nCons (bot::b)
5308   
5309     tag :: a -> Int
5310     tag {| Unit |}    _       = 1
5311     tag {| a :*: b |} _       = 1   
5312     tag {| a :+: b |} (Inl x) = tag x
5313     tag {| a :+: b |} (Inr y) = nCons (bot::a) + tag y
5314 </programlisting>
5315 </para>
5316 </sect2>
5317 </sect1>
5318
5319
5320
5321 <!-- Emacs stuff:
5322      ;;; Local Variables: ***
5323      ;;; mode: sgml ***
5324      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter" "sect1") ***
5325      ;;; End: ***
5326  -->
5327