[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: loop macro



        ;; Return a list of the items in list-of-items 
        ;; which pass the test TEST.
        (iterate ((item in list-of-items))
          (when (test item)
            (collect item)))