cl-cookbook icon indicating copy to clipboard operation
cl-cookbook copied to clipboard

Feature Request: Give explicit examples of using for:for

Open jgarte opened this issue 2 years ago • 0 comments

It has the other advantage of having one construct that works for all data structures (lists, vectors, hash-tables…): in doubt, just use for… over:

Let's give some explicit examples of using for:for and not this:

(for:for ((x over <your data structure>))
   (print …))

The above is not as friendly for new users who are not yet familiar with the syntax for common data structures and might even be confusing with a non standard syntax of <your data structure>. Let's make it friendlier.

WDYT

jgarte avatar Jan 29 '23 18:01 jgarte