Re: [racket-users] Implementation of paraeters

2020-03-02 Thread Ryan Culpepper
A parameter object itself is essentially just a key. To get its value, you first look up the current parameterization in the current continuation's continuation-marks. The parameterization contains an immutable eq?-hash mapping parameter keys to thread cells. The parameter's value is the value of

[racket-users] Implementation of paraeters

2020-03-02 Thread Hendrik Boom
How are parameters implemented. My conceptial model is an association list (like in the original Lisp 1.5 manuel) would suffice, but that can lead to long searches. What is actually done in Racket? -- hendrik -- You received this message because you are subscribed to the Google Groups