diff options
author | Colin Okay <cbeok@protonmail.com> | 2020-08-05 13:51:32 -0500 |
---|---|---|
committer | Colin Okay <cbeok@protonmail.com> | 2020-08-05 13:51:32 -0500 |
commit | 6c765c4edad4a3c713bfd95732e50370c19814fb (patch) | |
tree | 013205b7eedac9a582ce4922b29da1d8709237c4 | |
parent | a3be4b993e6dda92cbb1c7be5433cf70bf8a0af4 (diff) |
added toc
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,21 @@ +Table Of Contents +- [GTWIWTG Overview](#gtwiwtg) + - [Installation](#installation) + - [Motivating Examples](#first-some-action) + - [Tutorial](#tutorial) + - [Function Taxonomy](#three-kinds-of-function) + - [Constructors](#the-breadwinning-constructors) + - [Combinators](#the-combination-and-transformation-functions) + - [Combinator Error Behavior](#a-word-of-warning) + - [Consuming Generators](#the-fundamental-consumer) + - [One-Time-Use](#generators-are-consumed-at-most-once) + - [Accumulating Consumer](#the-accumulating-consumer) + - [More Consumers](#the-remaining-consumers) + - [Anaphoric Consumers](#anaphoric-consumer-macros) + - [Extending GTWIWTG](#making-new-generators) + - [`with-generator`](#the-naughty-consumer) + - [Example: Permutations](#the-permutations-example) + # GTWIWTG *Generators The Way I Want Them Generated* |