aboutsummaryrefslogtreecommitdiffhomepage
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
parent998ad387eb169cf3d04c3016d0847fe0aefc7419 (diff)
removed mention of yield-to
-rw-r--r--README.md5
-rw-r--r--package.lisp1
2 files changed, 0 insertions, 6 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
diff --git a/package.lisp b/package.lisp
index 2629361..a591b87 100644
--- a/package.lisp
+++ b/package.lisp
@@ -15,7 +15,6 @@
#:file-lines
#:file-chars
#:file-bytes
- #:yield-to!
#:map!
#:filter!
#:inflate!