The letrec tag has no wiki summary.
1
vote
1answer
75 views
cond with local binding
My question is about rewriting a nested if conditions to a single cond with a branch having a local binding. I am very new to Racket, just making my first steps, so if my question is stupid, please, ...
3
votes
2answers
108 views
Letrec and reentrant continuations
I have been told that the following expression is intended to evaluate to 0, but that many implementations of Scheme evaluate it as 1:
(let ((cont #f))
(letrec ((x (call-with-current-continuation ...
5
votes
1answer
120 views
Why does this code using shadowing `let` bindings hang?
Running this code:
j = let x = 4
in let x = x * x
in x
in the interpreter:
ghci> j
... no response ...
hangs with very little CPU utilization. Why is this? I expected j = 16.
3
votes
2answers
230 views
What are the differences between 'let' or 'letrec' and 'define' for creating local bindings?
I don't understand what the differences are between (sorry for the contrived example):
(define average
(lambda (elems)
(define length
(lambda (xs)
(if (null? xs)
0
...
9
votes
1answer
191 views
letrec in Scala? (Immutable way to “Tie the knot?”)
Suppose I have a stupid little case class like so:
case class Foo(name: String, other: Foo)
How can I define a and b immutably such that a.other is b, and b.other is a? Does scala provide some way ...
1
vote
2answers
200 views
How is “letrec” implemented without using “set!”?
How can letrec be implemented without using set!?
It seems to me that set! is an imperative programming construct, and that by using it, one loses the benefits of functional programming.
6
votes
3answers
377 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" ...
0
votes
2answers
175 views
how to pattern match 'letrec'
I am trying to pattern match calls to letrec using match-lambda. It seems to me that this pattern:
(match-lambda
(`(letrec ((,<var> ,<val>) . (,<vars> ,<vals>)) ...
2
votes
1answer
233 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?
...
32
votes
3answers
2k 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
...
13
votes
3answers
3k views
What are the benefits of letrec?
While reading "The Seasoned Schemer" I've begun to learn about letrec. I understand what it does (can be duplicated with a Y-Combinator) but the book is using it in lieu of recurring on the already ...
13
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 ...