Tying the knot is a technique in which you can create circular data structures in the absence of mutation by referencing a yet to be produced value.

learn more… | top users | synonyms

9
votes
1answer
235 views

Debugging unwanted strictness?

I have a problem that I don't know how to reason about. I was just about to ask if somebody could help me with the specific problem, but it dawned on me that I could ask a more general question and ...
16
votes
1answer
432 views

Bug in Data.Map implementation?

I've stumbled upon something that I'm guessing is a bug in Data.Map, but which is also quite possibly a bug in my Haskell knowledge. Hoping somebody can clarify which it is :) Please reference this ...
37
votes
5answers
2k views

Tying the Knot with a State monad

I'm working on a Haskell project that involves tying a big knot: I'm parsing a serialized representation of a graph, where each node is at some offset into the file, and may reference another node by ...
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 ...
19
votes
2answers
1k views

Using Cont to acquire values from the future and the past

I'm writing a brainfuck interpreter in Haskell, and I came up with what I believe to be a very interesting description of a program: data Program m = Instruction (m ()) (Program m) | ...
10
votes
1answer
261 views

Any methods for recovering enough laziness to tie the knot in a monad?

I want to write a slick bit of code (saving me much time to implement otherwise) by tying the knot. It goes roughly like this, n <- myinstr n x where in theory, myinstr should run x to get a ...
2
votes
3answers
473 views

Mutually recursive evaluator in Haskell

Update: I've added an answer that describes my final solution (hint: the single Expr data type wasn't sufficient). I'm writing an evaluator for a little expression language, but I'm stuck on the ...
25
votes
2answers
2k views

Explanation of “tying the knot”

In reading Haskell-related stuff I sometimes come across the expression “tying the knot”, I think I understand what it does, but not how. So, are there any good, basic, and simple to understand ...