The letrec tag has no wiki summary.
18
votes
3answers
899 views
How do I use fix, and how does it work?
I was a bit confused by the documentation for fix (although I think I understand what it's supposed to do now), so I looked at the source code. That left me more confused:
fix :: (a -> a) -> a
...
11
votes
15answers
2k views
Which languages support *recursive* function literals / anonymous functions?
It seems quite a few mainstream languages support function literals these days. They are also called anonymous functions, but I don't care if they have a name. The important thing is that a function ...
5
votes
2answers
174 views
Transforming a function that computes a fixed point
I have a function which computes a fixed point in terms of iterate:
equivalenceClosure :: (Ord a) => Relation a -> Relation a
equivalenceClosure = fst . List.head -- "guaranteed" ...
2
votes
1answer
147 views
Scheme: Why does evaluating this recursive function defined in letrec fail?
I am writing a silly letrec in Scheme (DrRacket Pretty Big):
(letrec
((is-creative?
(lambda (writing)
(if (null? writing)
#f
(is-creative?
...