[racket-users] PLDI 2022 Second Call for Papers

2021-10-13 Thread 'William J. Bowman' via Racket Users
Please distribute widely. *Call for Papers* 2022 ACM Conference on Programming Language Design and Implementation (PLDI) Mon 20 - Fri 24 June 2022 San Diego, California, United States https://pldi22.sigplan.org/track/pldi-2022-pldi#Call-for-Papers PLDI is a premier forum for

Re: [racket-users] hash->list with try-order? (like hash-map)

2021-10-13 Thread George Neuner
On 10/12/2021 7:01 PM, unlimitedscolobb wrote: I wrote myself this little function: (define (hash->ordered-list h)   (hash-map h cons #t)) which uses the try-order? argument of hash-map. Is there a reason for hash->list not have an optional argument try-order?  Or perhaps having such a

Re: [racket-users] hash->list with try-order? (like hash-map)

2021-10-13 Thread George Neuner
On 10/12/2021 7:01 PM, unlimitedscolobb wrote: I wrote myself this little function: (define (hash->ordered-list h)   (hash-map h cons #t)) which uses the try-order? argument of hash-map. Is there a reason for hash->list not have an optional argument try-order?  Or perhaps having such a