
Btw, I saw that recently @capfredf removes the Typed Racket provide transformer. What’s the motivation behind it?

Other than saving some keystrokes, those transformers actually don’t do any meaningful things. On the other hand, you have to import utils.rkt, which we would want to remove eventually, so as to use them. And in some corner cases, they don’t always work like the real ’require-spec’s (I can’t remember the details though)

They also didn’t work well with tools and were confusing to new people

Hi. Please advise on the best approach to merging two hash tables on the keys.

For example .. (define table1 (make-hasheq))
(define table2 (make-hasheq))
(hash-set! table1 "key1" 111)
(hash-set! table2 "key1" 222)
I would to create a 3rd table that looks like this ..

hash-union or hash-union!

ahh okay… let me try

thanks!