diff options
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | package.lisp | 1 |
2 files changed, 6 insertions, 5 deletions
@@ -233,15 +233,15 @@ Here are some simple examples of their use: (0 2 4 6 8) -;; step up from N for each N in the range 1 to 4 +;; generate (times N) for each N in the range 1 to 4 > (collect (inflate! #'times (range :from 1 :to 4 :inclusive t))) (0 0 1 0 1 2 0 1 2 3) ;; In the above example, you can see that -;; first 0 is generated -;; then 0 1 -;; then 0 1 2 -;; and finally 0 1 2 3 +;; first 0 is generated (times 1) +;; then 0 1 (times 2) +;; then 0 1 2 (times 3) +;; and finally 0 1 2 3 (times 4) ``` diff --git a/package.lisp b/package.lisp index a591b87..1923e2e 100644 --- a/package.lisp +++ b/package.lisp @@ -20,6 +20,7 @@ #:inflate! #:concat! #:zip! + #:indexed! #:merge! #:skip! #:skip-while! |