aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-07-09 22:09:25 -0500
committerColin Okay <cbeok@protonmail.com>2020-07-09 22:09:25 -0500
commit81749be0ed8415b88b4c3d5c5d1ce08d329e6453 (patch)
tree91485bc5ac1286993eefb2a50c3fc96d3927a4c1 /README.md
parent998ad387eb169cf3d04c3016d0847fe0aefc7419 (diff)
removed mention of yield-to
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/README.md b/README.md
index aab638a..7cc05c9 100644
--- a/README.md
+++ b/README.md
@@ -252,11 +252,6 @@ Here are some simple examples of their use:
- `(skip-while! pred gen)` produces a generator by skippng elements of `gen` while `pred` is `t`
- `(merge! comp gen1 gen2 &rest gens)` emulates the behavior of `merge` but for generators
-There's also `yield-to!`, but it is kind of dark magic. If, when you
-are creating your generators, you find yourself needing to to stop and
-restart generators mid-iteration, then check out the docstring for
-`yield-to!`. I may end up removing it from the library because its use
-could easily lead to confusing situations.
### The Fundamental Consumer