cat theory tweaks
[lambda.git] / week7.mdwn
1 [[!toc]]
2
3
4 Towards Monads: Safe division
5 -----------------------------
6
7 [This section used to be near the end of the lecture notes for week 6]
8
9 We begin by reasoning about what should happen when someone tries to
10 divide by zero.  This will lead us to a general programming technique
11 called a *monad*, which we'll see in many guises in the weeks to come.
12
13 Integer division presupposes that its second argument
14 (the divisor) is not zero, upon pain of presupposition failure.
15 Here's what my OCaml interpreter says:
16
17     # 12/0;;
18     Exception: Division_by_zero.
19
20 So we want to explicitly allow for the possibility that
21 division will return something other than a number.
22 We'll use OCaml's `option` type, which works like this:
23
24     # type 'a option = None | Some of 'a;;
25     # None;;
26     - : 'a option = None
27     # Some 3;;
28     - : int option = Some 3
29
30 So if a division is normal, we return some number, but if the divisor is
31 zero, we return `None`. As a mnemonic aid, we'll append a `'` to the end of our new divide function.
32
33 <pre>
34 let div' (x:int) (y:int) =
35   match y with
36           0 -> None
37     | _ -> Some (x / y);;
38
39 (*
40 val div' : int -> int -> int option = fun
41 # div' 12 2;;
42 - : int option = Some 6
43 # div' 12 0;;
44 - : int option = None
45 # div' (div' 12 2) 3;;
46 Characters 4-14:
47   div' (div' 12 2) 3;;
48         ^^^^^^^^^^
49 Error: This expression has type int option
50        but an expression was expected of type int
51 *)
52 </pre>
53
54 This starts off well: dividing 12 by 2, no problem; dividing 12 by 0,
55 just the behavior we were hoping for.  But we want to be able to use
56 the output of the safe-division function as input for further division
57 operations.  So we have to jack up the types of the inputs:
58
59 <pre>
60 let div' (u:int option) (v:int option) =
61   match v with
62           None -> None
63     | Some 0 -> None
64         | Some y -> (match u with
65                                           None -> None
66                     | Some x -> Some (x / y));;
67
68 (*
69 val div' : int option -> int option -> int option = <fun>
70 # div' (Some 12) (Some 2);;
71 - : int option = Some 6
72 # div' (Some 12) (Some 0);;
73 - : int option = None
74 # div' (div' (Some 12) (Some 0)) (Some 3);;
75 - : int option = None
76 *)
77 </pre>
78
79 Beautiful, just what we need: now we can try to divide by anything we
80 want, without fear that we're going to trigger any system errors.
81
82 I prefer to line up the `match` alternatives by using OCaml's
83 built-in tuple type:
84
85 <pre>
86 let div' (u:int option) (v:int option) =
87   match (u, v) with
88           (None, _) -> None
89     | (_, None) -> None
90     | (_, Some 0) -> None
91         | (Some x, Some y) -> Some (x / y);;
92 </pre>
93
94 So far so good.  But what if we want to combine division with
95 other arithmetic operations?  We need to make those other operations
96 aware of the possibility that one of their arguments has triggered a
97 presupposition failure:
98
99 <pre>
100 let add' (u:int option) (v:int option) =
101   match (u, v) with
102           (None, _) -> None
103     | (_, None) -> None
104     | (Some x, Some y) -> Some (x + y);;
105
106 (*
107 val add' : int option -> int option -> int option = <fun>
108 # add' (Some 12) (Some 4);;
109 - : int option = Some 16
110 # add' (div' (Some 12) (Some 0)) (Some 4);;
111 - : int option = None
112 *)
113 </pre>
114
115 This works, but is somewhat disappointing: the `add'` operation
116 doesn't trigger any presupposition of its own, so it is a shame that
117 it needs to be adjusted because someone else might make trouble.
118
119 But we can automate the adjustment.  The standard way in OCaml,
120 Haskell, etc., is to define a `bind` operator (the name `bind` is not
121 well chosen to resonate with linguists, but what can you do). To continue our mnemonic association, we'll put a `'` after the name "bind" as well.
122
123 <pre>
124 let bind' (u: int option) (f: int -> (int option)) =
125   match u with
126           None -> None
127     | Some x -> f x;;
128
129 let add' (u: int option) (v: int option)  =
130   bind' u (fun x -> bind' v (fun y -> Some (x + y)));;
131
132 let div' (u: int option) (v: int option) =
133   bind' u (fun x -> bind' v (fun y -> if (0 = y) then None else Some (x / y)));;
134
135 (*
136 #  div' (div' (Some 12) (Some 2)) (Some 3);;
137 - : int option = Some 2
138 #  div' (div' (Some 12) (Some 0)) (Some 3);;
139 - : int option = None
140 # add' (div' (Some 12) (Some 0)) (Some 3);;
141 - : int option = None
142 *)
143 </pre>
144
145 Compare the new definitions of `add'` and `div'` closely: the definition
146 for `add'` shows what it looks like to equip an ordinary operation to
147 survive in dangerous presupposition-filled world.  Note that the new
148 definition of `add'` does not need to test whether its arguments are
149 None objects or real numbers---those details are hidden inside of the
150 `bind'` function.
151
152 The definition of `div'` shows exactly what extra needs to be said in
153 order to trigger the no-division-by-zero presupposition.
154
155 [Linguitics note: Dividing by zero is supposed to feel like a kind of
156 presupposition failure.  If we wanted to adapt this approach to
157 building a simple account of presupposition projection, we would have
158 to do several things.  First, we would have to make use of the
159 polymorphism of the `option` type.  In the arithmetic example, we only
160 made use of `int option`s, but when we're composing natural language
161 expression meanings, we'll need to use types like `N option`, `Det option`,
162 `VP option`, and so on.  But that works automatically, because we can use
163 any type for the `'a` in `'a option`.  Ultimately, we'd want to have a
164 theory of accommodation, and a theory of the situations in which
165 material within the sentence can satisfy presuppositions for other
166 material that otherwise would trigger a presupposition violation; but,
167 not surprisingly, these refinements will require some more
168 sophisticated techniques than the super-simple option monad.]
169
170
171 Monads in General
172 -----------------
173
174 We've just seen a way to separate thinking about error conditions
175 (such as trying to divide by zero) from thinking about normal
176 arithmetic computations.  We did this by making use of the `option`
177 type: in each place where we had something of type `int`, we put
178 instead something of type `int option`, which is a sum type consisting
179 either of one choice with an `int` payload, or else a `None` choice
180 which we interpret as signaling that something has gone wrong.
181
182 The goal was to make normal computing as convenient as possible: when
183 we're adding or multiplying, we don't have to worry about generating
184 any new errors, so we would rather not think about the difference
185 between `int`s and `int option`s.  We tried to accomplish this by
186 defining a `bind` operator, which enabled us to peel away the `option`
187 husk to get at the delicious integer inside.  There was also a
188 homework problem which made this even more convenient by defining a
189 `lift` operator that mapped any binary operation on plain integers
190 into a lifted operation that understands how to deal with `int
191 option`s in a sensible way.
192
193 So what exactly is a monad?  We can consider a monad to be a system
194 that provides at least the following three elements:
195
196 *       A complex type that's built around some more basic type. Usually
197         the complex type will be polymorphic, and so can apply to different basic types.
198         In our division example, the polymorphism of the `'a option` type
199         provides a way of building an option out of any other type of object.
200         People often use a container metaphor: if `u` has type `int option`,
201         then `u` is a box that (may) contain an integer.
202
203                 type 'a option = None | Some of 'a;;
204
205 *       A way to turn an ordinary value into a monadic value.  In OCaml, we
206         did this for any integer `x` by mapping it to
207         the option `Some x`.  In the general case, this operation is
208         known as `unit` or `return.` Both of those names are terrible. This
209         operation is only very loosely connected to the `unit` type we were
210         discussing earlier (whose value is written `()`). It's also only
211         very loosely connected to the "return" keyword in many other
212         programming languages like C. But these are the names that the literature
213         uses.  [The rationale for "unit" comes from the monad laws
214         (see below), where the unit function serves as an identity,
215         just like the unit number (i.e., 1) serves as the identity
216         object for multiplication.  The rationale for "return" comes
217         from a misguided desire to resonate with C programmers and
218         other imperative types.]
219
220         The unit/return operation is a way of lifting an ordinary object into
221         the monadic box you've defined, in the simplest way possible. You can think
222         of the singleton function as an example: it takes an ordinary object
223         and returns a set containing that object. In the example we've been
224         considering:
225
226                 let unit x = Some x;;
227                 val unit : 'a -> 'a option = <fun>
228
229         So `unit` is a way to put something inside of a monadic box. It's crucial
230         to the usefulness of monads that there will be monadic boxes that
231         aren't the result of that operation. In the option/maybe monad, for
232         instance, there's also the empty box `None`. In another (whimsical)
233         example, you might have, in addition to boxes merely containing integers,
234         special boxes that contain integers and also sing a song when they're opened. 
235
236         The unit/return operation will always be the simplest, conceptually
237         most straightforward way to lift an ordinary value into a monadic value
238         of the monadic type in question.
239
240 *       Thirdly, an operation that's often called `bind`. This is another
241         unfortunate name: this operation is only very loosely connected to
242         what linguists usually mean by "binding." In our option/maybe monad, the
243         bind operation is:
244
245                 let bind u f = match u with None -> None | Some x -> f x;;
246                 val bind : 'a option -> ('a -> 'b option) -> 'b option = <fun>
247
248         Note the type: `bind` takes two arguments: first, a monadic box
249         (in this case, an `'a option`); and second, a function from
250         ordinary objects to monadic boxes. `bind` then returns a monadic
251         value: in this case, a `'b option` (you can start with, e.g., `int option`s
252         and end with `bool option`s).
253
254         Intuitively, the interpretation of what `bind` does is this:
255         the first argument is a monadic value `u`, which 
256         evaluates to a box that (maybe) contains some ordinary value, call it `x`.
257         Then the second argument uses `x` to compute a new monadic
258         value.  Conceptually, then, we have
259
260                 let bind u f = (let x = unbox u in f x);;
261
262         The guts of the definition of the `bind` operation amount to
263         specifying how to unbox the monadic value `u`.  In the `bind`
264         operator for the option monad, we unboxed the monadic value by
265         matching it with the pattern `Some x`---whenever `u`
266         happened to be a box containing an integer `x`, this allowed us to
267         get our hands on that `x` and feed it to `f`.
268
269         If the monadic box didn't contain any ordinary value,
270         we instead pass through the empty box unaltered.
271
272         In a more complicated case, like our whimsical "singing box" example
273         from before, if the monadic value happened to be a singing box
274         containing an integer `x`, then the `bind` operation would probably
275         be defined so as to make sure that the result of `f x` was also
276         a singing box. If `f` also wanted to insert a song, you'd have to decide
277         whether both songs would be carried through, or only one of them.
278         (Are you beginning to realize how wierd and wonderful monads
279         can be?)
280
281         There is no single `bind` function that dictates how this must go.
282         For each new monadic type, this has to be worked out in an
283         useful way.
284
285 So the "option/maybe monad" consists of the polymorphic `option` type, the
286 `unit`/return function, and the `bind` function.
287
288
289 A note on notation: Haskell uses the infix operator `>>=` to stand for
290 `bind`: wherever you see `u >>= f`, that means `bind u f`.
291 Wadler uses &#8902;, but that hasn't been widely adopted (unfortunately).
292
293 Also, if you ever see this notation:
294
295         do
296                 x <- u
297                 f x
298
299 That's a Haskell shorthand for `u >>= (\x -> f x)`, that is, `bind u f`.
300 Similarly:
301
302         do
303                 x <- u
304                 y <- v
305                 f x y
306
307 is shorthand for `u >>= (\x -> v >>= (\y -> f x y))`, that is, `bind u
308 (fun x -> bind v (fun y -> f x y))`. Those who did last week's
309 homework may recognize this last expression.  You can think of the
310 notation like this: take the singing box `u` and evaluate it (which
311 includes listening to the song).  Take the int contained in the
312 singing box (the end result of evaluting `u`) and bind the variable
313 `x` to that int.  So `x <- u` means "Sing me up an int, which I'll call
314 `x`".
315
316 (Note that the above "do" notation comes from Haskell. We're mentioning it here
317 because you're likely to see it when reading about monads. It won't work in
318 OCaml. In fact, the `<-` symbol already means something different in OCaml,
319 having to do with mutable record fields. We'll be discussing mutation someday
320 soon.)
321
322 As we proceed, we'll be seeing a variety of other monad systems. For example, another monad is the list monad. Here the monadic type is:
323
324         # type 'a list
325
326 The `unit`/return operation is:
327
328         # let unit x = [x];;
329         val unit : 'a -> 'a list = <fun>
330
331 That is, the simplest way to lift an `'a` into an `'a list` is just to make a
332 singleton list of that `'a`. Finally, the `bind` operation is:
333
334         # let bind u f = List.concat (List.map f u);;
335         val bind : 'a list -> ('a -> 'b list) -> 'b list = <fun>
336         
337 What's going on here? Well, consider `List.map f u` first. This goes through all
338 the members of the list `u`. There may be just a single member, if `u = unit x`
339 for some `x`. Or on the other hand, there may be no members, or many members. In
340 any case, we go through them in turn and feed them to `f`. Anything that gets fed
341 to `f` will be an `'a`. `f` takes those values, and for each one, returns a `'b list`.
342 For example, it might return a list of all that value's divisors. Then we'll
343 have a bunch of `'b list`s. The surrounding `List.concat ( )` converts that bunch
344 of `'b list`s into a single `'b list`:
345
346         # List.concat [[1]; [1;2]; [1;3]; [1;2;4]]
347         - : int list = [1; 1; 2; 1; 3; 1; 2; 4]
348
349 So now we've seen two monads: the option/maybe monad, and the list monad. For any
350 monadic system, there has to be a specification of the complex monad type,
351 which will be parameterized on some simpler type `'a`, and the `unit`/return
352 operation, and the `bind` operation. These will be different for different
353 monadic systems.
354
355 Many monadic systems will also define special-purpose operations that only make
356 sense for that system.
357
358 Although the `unit` and `bind` operation are defined differently for different
359 monadic systems, there are some general rules they always have to follow.
360
361
362 The Monad Laws
363 --------------
364
365 Just like good robots, monads must obey three laws designed to prevent
366 them from hurting the people that use them or themselves.
367
368 *       **Left identity: unit is a left identity for the bind operation.**
369         That is, for all `f:'a -> 'a m`, where `'a m` is a monadic
370         type, we have `(unit x) >>= f == f x`.  For instance, `unit` is itself
371         a function of type `'a -> 'a m`, so we can use it for `f`:
372
373                 # let unit x = Some x;;
374                 val unit : 'a -> 'a option = <fun>
375                 # let ( >>= ) u f = match u with None -> None | Some x -> f x;;
376                 val ( >>= ) : 'a option -> ('a -> 'b option) -> 'b option = <fun>
377
378         The parentheses is the magic for telling OCaml that the
379         function to be defined (in this case, the name of the function
380         is `>>=`, pronounced "bind") is an infix operator, so we write
381         `u >>= f` or equivalently `( >>= ) u f` instead of `>>= u
382         f`. Now, for a less trivial instance of a function from `int`s
383         to `int option`s:
384
385                 # unit 2;;
386                 - : int option = Some 2
387                 # unit 2 >>= unit;;
388                 - : int option = Some 2
389
390                 # let divide x y = if 0 = y then None else Some (x/y);;
391                 val divide : int -> int -> int option = <fun>
392                 # divide 6 2;;
393                 - : int option = Some 3
394                 # unit 2 >>= divide 6;;
395                 - : int option = Some 3
396
397                 # divide 6 0;;
398                 - : int option = None
399                 # unit 0 >>= divide 6;;
400                 - : int option = None
401
402
403 *       **Associativity: bind obeys a kind of associativity**. Like this:
404
405                 (u >>= f) >>= g == u >>= (fun x -> f x >>= g)
406
407         If you don't understand why the lambda form is necessary (the "fun
408         x" part), you need to look again at the type of `bind`.
409
410         Some examples of associativity in the option monad (bear in
411         mind that in the Ocaml implementation of integer division, 2/3
412         evaluates to zero, throwing away the remainder):
413
414                 # Some 3 >>= unit >>= unit;; 
415                 - : int option = Some 3
416                 # Some 3 >>= (fun x -> unit x >>= unit);;
417                 - : int option = Some 3
418
419                 # Some 3 >>= divide 6 >>= divide 2;;
420                 - : int option = Some 1
421                 # Some 3 >>= (fun x -> divide 6 x >>= divide 2);;
422                 - : int option = Some 1
423
424                 # Some 3 >>= divide 2 >>= divide 6;;
425                 - : int option = None
426                 # Some 3 >>= (fun x -> divide 2 x >>= divide 6);;
427                 - : int option = None
428
429 Of course, associativity must hold for *arbitrary* functions of
430 type `'a -> 'a m`, where `m` is the monad type.  It's easy to
431 convince yourself that the `bind` operation for the option monad
432 obeys associativity by dividing the inputs into cases: if `u`
433 matches `None`, both computations will result in `None`; if
434 `u` matches `Some x`, and `f x` evalutes to `None`, then both
435 computations will again result in `None`; and if the value of
436 `f x` matches `Some y`, then both computations will evaluate
437 to `g y`.
438
439 *       **Right identity: unit is a right identity for bind.**  That is, 
440         `u >>= unit == u` for all monad objects `u`.  For instance,
441
442                 # Some 3 >>= unit;;
443                 - : int option = Some 3
444                 # None >>= unit;;
445                 - : 'a option = None
446
447
448 More details about monads
449 -------------------------
450
451 If you studied algebra, you'll remember that a *monoid* is an
452 associative operation with a left and right identity.  For instance,
453 the natural numbers along with multiplication form a monoid with 1
454 serving as the left and right identity.  That is, `1 * u == u == u * 1` for all
455 `u`, and `(u * v) * w == u * (v * w)` for all `u`, `v`, and `w`.  As
456 presented here, a monad is not exactly a monoid, because (unlike the
457 arguments of a monoid operation) the two arguments of the bind are of
458 different types.  But it's possible to make the connection between
459 monads and monoids much closer. This is discussed in [Monads in Category
460 Theory](/advanced_topics/monads_in_category_theory).
461 See also <http://www.haskell.org/haskellwiki/Monad_Laws>.
462
463 Here are some papers that introduced monads into functional programming:
464
465 *       [Eugenio Moggi, Notions of Computation and Monads](http://www.disi.unige.it/person/MoggiE/ftp/ic91.pdf): Information and Computation 93 (1) 1991.
466
467 *       [Philip Wadler. Monads for Functional Programming](http://homepages.inf.ed.ac.uk/wadler/papers/marktoberdorf/baastad.pdf):
468 in M. Broy, editor, *Marktoberdorf Summer School on Program Design
469 Calculi*, Springer Verlag, NATO ASI Series F: Computer and systems
470 sciences, Volume 118, August 1992. Also in J. Jeuring and E. Meijer,
471 editors, *Advanced Functional Programming*, Springer Verlag, 
472 LNCS 925, 1995. Some errata fixed August 2001.  This paper has a great first
473 line: **Shall I be pure, or impure?**
474 <!--    The use of monads to structure functional programs is described. Monads provide a convenient framework for simulating effects found in other languages, such as global state, exception handling, output, or non-determinism. Three case studies are looked at in detail: how monads ease the modification of a simple evaluator; how monads act as the basis of a datatype of arrays subject to in-place update; and how monads can be used to build parsers.-->
475
476 *       [Philip Wadler. The essence of functional programming](http://homepages.inf.ed.ac.uk/wadler/papers/essence/essence.ps):
477 invited talk, *19'th Symposium on Principles of Programming Languages*, ACM Press, Albuquerque, January 1992.
478 <!--    This paper explores the use monads to structure functional programs. No prior knowledge of monads or category theory is required.
479         Monads increase the ease with which programs may be modified. They can mimic the effect of impure features such as exceptions, state, and continuations; and also provide effects not easily achieved with such features. The types of a program reflect which effects occur.
480         The first section is an extended example of the use of monads. A simple interpreter is modified to support various extra features: error messages, state, output, and non-deterministic choice. The second section describes the relation between monads and continuation-passing style. The third section sketches how monads are used in a compiler for Haskell that is written in Haskell.-->
481
482 *       [Daniel Friedman. A Schemer's View of Monads](/schemersviewofmonads.ps): from <https://www.cs.indiana.edu/cgi-pub/c311/doku.php?id=home> but the link above is to a local copy.
483
484 There's a long list of monad tutorials on the [[Offsite Reading]] page. Skimming the titles makes us laugh.
485
486 In the presentation we gave above---which follows the functional programming conventions---we took `unit`/return and `bind` as the primitive operations. From these a number of other general monad operations can be derived. It's also possible to take some of the others as primitive. The [Monads in Category
487 Theory](/advanced_topics/monads_in_category_theory) notes do so, for example.
488
489 Here are some of the other general monad operations. You don't have to master these; they're collected here for your reference.
490
491 You may sometimes see:
492
493         u >> v
494
495 That just means:
496
497         u >>= fun _ -> v
498
499 that is:
500
501         bind u (fun _ -> v)
502
503 You could also do `bind u (fun x -> v)`; we use the `_` for the function argument to be explicit that that argument is never going to be used.
504
505 The `lift` operation we asked you to define for last week's homework is a common operation. The second argument to `bind` converts `'a` values into `'b m` values---that is, into instances of the monadic type. What if we instead had a function that merely converts `'a` values into `'b` values, and we want to use it with our monadic type? Then we "lift" that function into an operation on the monad. For example:
506
507         # let even x = (x mod 2 = 0);;
508         val g : int -> bool = <fun>
509
510 `even` has the type `int -> bool`. Now what if we want to convert it into an operation on the option/maybe monad?
511
512         # let lift g = fun u -> bind u (fun x -> Some (g x));;
513         val lift : ('a -> 'b) -> 'a option -> 'b option = <fun>
514
515 `lift even` will now be a function from `int option`s to `bool option`s. We can
516 also define a lift operation for binary functions:
517
518         # let lift2 g = fun u v -> bind u (fun x -> bind v (fun y -> Some (g x y)));;
519         val lift2 : ('a -> 'b -> 'c) -> 'a option -> 'b option -> 'c option = <fun>
520
521 `lift2 (+)` will now be a function from `int option`s  and `int option`s to `int option`s. This should look familiar to those who did the homework.
522
523 The `lift` operation (just `lift`, not `lift2`) is sometimes also called the `map` operation. (In Haskell, they say `fmap` or `<$>`.) And indeed when we're working with the list monad, `lift f` is exactly `List.map f`!
524
525 Wherever we have a well-defined monad, we can define a lift/map operation for that monad. The examples above used `Some (g x)` and so on; in the general case we'd use `unit (g x)`, using the specific `unit` operation for the monad we're working with.
526
527 In general, any lift/map operation can be relied on to satisfy these laws:
528
529         * lift id = id
530         * lift (compose f g) = compose (lift f) (lift g)
531
532 where `id` is `fun x -> x` and `compose f g` is `fun x -> f (g x)`. If you think about the special case of the map operation on lists, this should make sense. `List.map id lst` should give you back `lst` again. And you'd expect these
533 two computations to give the same result:
534
535         List.map (fun x -> f (g x)) lst
536         List.map f (List.map g lst)
537
538 Another general monad operation is called `ap` in Haskell---short for "apply." (They also use `<*>`, but who can remember that?) This works like this:
539
540         ap [f] [x; y] = [f x; f y]
541         ap (Some f) (Some x) = Some (f x)
542
543 and so on. Here are the laws that any `ap` operation can be relied on to satisfy:
544
545         ap (unit id) u = u
546         ap (ap (ap (unit compose) u) v) w = ap u (ap v w)
547         ap (unit f) (unit x) = unit (f x)
548         ap u (unit x) = ap (unit (fun f -> f x)) u
549
550 Another general monad operation is called `join`. This is the operation that takes you from an iterated monad to a single monad. Remember when we were explaining the `bind` operation for the list monad, there was a step where
551 we went from:
552
553         [[1]; [1;2]; [1;3]; [1;2;4]]
554
555 to:
556
557         [1; 1; 2; 1; 3; 1; 2; 4]
558
559 That is the `join` operation.
560
561 All of these operations can be defined in terms of `bind` and `unit`; or alternatively, some of them can be taken as primitive and `bind` can be defined in terms of them. Here are various interdefinitions:
562
563         lift f u = u >>= compose unit f
564         lift f u = ap (unit f) u
565         lift2 f u v = u >>= (fun x -> v >>= (fun y -> unit (f x y)))
566         lift2 f u v = ap (lift f u) v = ap (ap (unit f) u) v
567         ap u v = u >>= (fun f -> lift f v)
568         ap u v = lift2 id u v
569         join m2 = m2 >>= id
570         u >>= f = join (lift f u)
571         u >> v = u >>= (fun _ -> v)
572         u >> v = lift2 (fun _ -> id) u v
573
574
575
576 Monad outlook
577 -------------
578
579 We're going to be using monads for a number of different things in the
580 weeks to come.  The first main application will be the State monad,
581 which will enable us to model mutation: variables whose values appear
582 to change as the computation progresses.  Later, we will study the
583 Continuation monad.
584
585 In the meantime, we'll look at several linguistic applications for monads, based
586 on what's called the *reader monad*.
587
588 ##[[Reader monad]]##
589
590 ##[[Intensionality monad]]##
591