Open jcubic opened 7 months ago
Those two functions should work similarly to map, filter, and reduce (fold-right).
map
filter
reduce
fold-right
(every equal? '(1 2 3 4) '(1 2 3 4)) ;; ==> #t
Those two functions should work similarly to
map
,filter
, andreduce
(fold-right
).