chickadee » library » foldr

foldr PROCEDURE INIT LISTprocedure

Applies PROCEDURE to the elements from LIST, beginning from the right:

(foldr + 0 '(1 2 3))    ==>    (+ 1 (+ 2 (+ 3 0)))