Tagged Questions

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 ...
4
votes
2answers
287 views

Scala - reduce/foldLeft

I have a nested map m which is like: m = Map("email" -> "a@b.com", "background" -> Map("language" -> "english")) I have an array arr = Array("background","language") How do I ...
4
votes
6answers
438 views

Practical use of fold/reduce in functional languages

Fold (aka reduce) is considered a very important higher order function. Map can be expressed in terms of fold (see here). But it sounds more academical than practical to me. A typical use could be to ...
3
votes
1answer
143 views

What is + in F#?

Why can't I do something like let sum = List.fold + 0 aListOfNumbers