Similar to lazy-cat but binds the resulting sequence to the supplied
binding-name, allowing for recursive expressions.
(defmacro rec-cat "Similar to lazy-cat but binds the resulting sequence to the supplied binding-name, allowing for recursive expressions." [binding-name & exprs] `(rec-seq ~binding-name (lazy-cat ~@exprs)))
Comments top
No comments for rec-cat. Log in to add a comment.