• Re: What to do with (time (length L)) proportional to (length L)

    From B. Pym@21:1/5 to B. Pym on Sat Sep 21 21:55:53 2024
    XPost: comp.lang.lisp

    B. Pym wrote:

    (loop for elem in some-list
    collect (f4 (f3 (f2 (f1 elem)))))

    (map (~> abs sqrt list) '(-4 -9 25))

    ===>
    ((2) (3) (5))


    (map (~> abs sqrt list (append '(finished))) '(-4 -9 25))
    ===>
    ((2 finished) (3 finished) (5 finished))

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