diff options
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | package.lisp | 1 |
2 files changed, 0 insertions, 6 deletions
@@ -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! |