[iterate-devel] "collect at beginning" ignores specified sequence type

Denis Budyak budden73 at gmail.com
Tue Nov 25 21:42:04 UTC 2008


(deftest k.result-type-at-beginning.1
         (iter (:for i below 2)
           (:collect i at beginning result-type vector))
  #(1 0))

(deftest k.result-type-at-beginning.2
         (iter (:for i below 2)
           (:collect i at beginning result-type list))
  (1 0))

(deftest k.result-type-at-beginning.2a
         (iter (:for i below 2)
           (:collect i at beginning))
  (1 0))

(deftest k.result-type-at-beginning.3
         (iter (:for c in-string "ab")
           (:collect c at beginning result-type string))
  "ba")


Did I miss something?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/iterate-devel/attachments/20081126/9850220f/attachment.html>


More information about the iterate-devel mailing list