remove toc
[lambda.git] / 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 *)