B. Pym
2024-09-12 17:59:57 UTC
(mapcan #'(lambda (x) (and (numberp x) (list x))) list)
(loop for x in list
when (numberp x) collect x)
I agree with this example. Once I learned LOOP I never used the(loop for x in list
when (numberp x) collect x)
above idiom again.
===>
(1 2 3)
Does using "loop" cripple the brain, or do only those
with crippled brains use "loop"?