diff options
author | Colin Okay <cbeok@protonmail.com> | 2020-07-09 22:09:25 -0500 |
---|---|---|
committer | Colin Okay <cbeok@protonmail.com> | 2020-07-09 22:09:25 -0500 |
commit | 81749be0ed8415b88b4c3d5c5d1ce08d329e6453 (patch) | |
tree | 91485bc5ac1286993eefb2a50c3fc96d3927a4c1 | |
parent | 998ad387eb169cf3d04c3016d0847fe0aefc7419 (diff) |
removed mention of yield-to
-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! |