Tagged Questions

8
votes
4answers
230 views

Why is foldl defined in a strange way in Racket?

In Haskell, like in many other functional languages, the function foldl is defined such that, for example, foldl (-) 0 [1,2,3,4] = -10. This is OK, because foldl (-) 0 [1, 2,3,4] is, by definition, ...
8
votes
2answers
509 views

“unfold” for common lisp?

I learned quite a bit of scheme from SICP but am more interested in common lisp now. I know common lisp's fold is reduce, with special arguments for left or right folding, but what is the equivalent ...
2
votes
2answers
302 views

Map, Filter, Foldr in DrRacket/Scheme

Programming language: scheme/DrRacket Hey everyone, We're currently going over map, filter, and foldr in my comp sci class. I understand that all three can be used to create abstract functions, but ...
1
vote
1answer
56 views

How can Scheme's Map function be used to pass two lists to a single function?

I have a question about Scheme. I am fairly new to the language, and my question is fairly general: Is it possible, without defining a recursive function, to use Map (or something like it) to feed ...