remove toc
authorjim <jim@web>
Mon, 6 Apr 2015 22:30:37 +0000 (18:30 -0400)
committerLinux User <ikiwiki@localhost.members.linode.com>
Mon, 6 Apr 2015 22:30:37 +0000 (18:30 -0400)
topics/_week9_transformers.mdwn

index 95963a7..414cbb9 100644 (file)
@@ -1,5 +1,3 @@
-[[!toc]]
-
 So far, we've defined monads as single-layered boxes. In practice, one often wants to combine the abilities of several monads. Corresponding to each monad like Reader, there's a corresponding ReaderT **monad transformer**. That takes an existing monad M and wraps Readerish monad packaging around it. The way these are defined parallels the way the single-layer versions are defined. For example, here's the Reader monad:
 
        (* monadic operations for the Reader monad *)