pair.fold.right: pair-fold-right from SRFI-1.
Description
pair-fold-right from SRFI-1.
Usage
pair.fold.right(f, nil, ...)
Value
The result of folding f over the successive tails (pairs) of
the input lists; nil if the lists are empty.
Arguments
- f
function to apply over the list-tails
- nil
the default value
- ...
the lists whose tails fold over