Re: [racket-users] Applicable sets and hashes?

2019-09-08 Thread Maciek Godek
Great, thanks! W dniu niedziela, 8 września 2019 11:57:47 UTC+2 użytkownik ricardo.g.herdt napisał: > > Hi Maciek, > > yes, it is. Take a look at rackjure: > > https://docs.racket-lang.org/rackjure/index.html#(part._dict-app) > > Regards, > > Ricardo > > > Am 08.09.2019 11:51 schrieb Maciek

Re: [racket-users] Applicable sets and hashes?

2019-09-08 Thread Ricardo Herdt
Hi Maciek, yes, it is. Take a look at rackjure: https://docs.racket-lang.org/rackjure/index.html#(part._dict-app) Regards, Ricardo Am 08.09.2019 11:51 schrieb Maciek Godek: Hi, is it possible to take Racket's hash tables and sets, and make them applicable (like in Clojure)? So that, for

[racket-users] Applicable sets and hashes?

2019-09-08 Thread Maciek Godek
Hi, is it possible to take Racket's hash tables and sets, and make them applicable (like in Clojure)? So that, for example (#hash((a . 1) (b . 2)) 'a) would be equivalent to (hash-ref #hash((a . 1) (b . 2)) 'a) and ((set 1 2 3) 1) would be equivalent to (set-member? (set 1 2 3) 1) --