• .Re: All paths through a tree

    From Robert L.@21:1/5 to Pascal Bourguignon on Wed Mar 16 02:13:14 2022
    Pascal Bourguignon wrote:

    When you have a vector, that is a repeatition of items of some kind,
    the procedure processing it will be a repeating loop:

    (defun process-vector (v)
    (loop :for i :from 0 :below (length v)
    :do (process-item (aref v i))))

    Gauche Scheme:

    (vector-for-each print #(b c d))

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)