Re: [Chicken-users] ANN: persistent-hash-map 0.0.1

2013-02-16 Thread Moritz Heidkamp
Hi Evan, Evan Hanson ev...@foldling.org writes: And also, thanks for the write-up about the library -- it's nice to have an idea of the motivation behind it, and the other tips (Chicken/performance-related) are helpful as well. Taking the time to do that is much appreciated. thanks a lot for

Re: [Chicken-users] ANN: persistent-hash-map 0.0.1

2013-02-16 Thread Moritz Heidkamp
John Cowan co...@mercury.ccil.org writes: This looks brilliant. I have written some sketchy stuff that searches an a-list in the normal way, but if the a-list lookup fails and the tail is not the empty list but a SRFI 69 hash table, then search the hash table, on the assumption that there's a

Re: [Chicken-users] ANN: persistent-hash-map 0.0.1

2013-02-12 Thread Evan Hanson
Fellow Chickeneers, [... snip great write-up... ] Cheers all around Moritz This looks really useful, thanks Moritz. And also, thanks for the write-up about the library -- it's nice to have an idea of the motivation behind it, and the other tips (Chicken/performance-related) are helpful as

Re: [Chicken-users] ANN: persistent-hash-map 0.0.1

2013-02-12 Thread Daniel Leslie
Very much appreciated, thanks! On Sun, Feb 10, 2013 at 3:31 PM, Moritz Heidkamp mor...@twoticketsplease.de wrote: Fellow Chickeneers, I have finally gotten around to finishing my long standing plan of porting the useful persistent hash map data structure from Clojure to Chicken.

Re: [Chicken-users] ANN: persistent-hash-map 0.0.1

2013-02-11 Thread John Cowan
Moritz Heidkamp scripsit: In a way, persistent hash maps give you the best of alists and hash tables combined which is why I highly recommend you to check them out. This looks brilliant. I have written some sketchy stuff that searches an a-list in the normal way, but if the a-list lookup

[Chicken-users] ANN: persistent-hash-map 0.0.1

2013-02-10 Thread Moritz Heidkamp
Fellow Chickeneers, I have finally gotten around to finishing my long standing plan of porting the useful persistent hash map data structure from Clojure to Chicken. Thankfully, ClojureScript grew its own implementation of it in the meantime which written (mostly) in ClojureScript itself so