[ANN] data.int-map 0.1.0

2014-09-15 Thread Zach Tellman
https://github.com/clojure/data.int-map This contrib library represents the union of two other libraries [1] [2], which are now both deprecated. There's nothing too surprising here, but I'm happy to answer any questions. Zach [1] https://github.com/ztellman/immutable-int-map [2]

Re: [ANN] data.int-map 0.1.0

2014-09-15 Thread Mark
This looks interesting because of how my app manipulates data from Datomic but it brings up the question, does int mean Java primitive 32-bit int or 64-bit long? On Monday, September 15, 2014 11:51:47 AM UTC-7, Zach Tellman wrote: https://github.com/clojure/data.int-map This contrib library

Re: [ANN] data.int-map 0.1.0

2014-09-15 Thread Ben Wolfson
These maps support transient/persistent semantics, and also provide special merge, merge-with, update, and update! methods that provide significantly faster performance than their normal Clojure counterparts. The keys must be in the range of [0, Long/MAX_VALUE]. On Mon, Sep 15, 2014 at 12:07 PM,

Re: [ANN] data.int-map 0.1.0

2014-09-15 Thread Mark
Duh! RTFM Thanks On Monday, September 15, 2014 12:10:21 PM UTC-7, Ben wrote: These maps support transient/persistent semantics, and also provide special merge, merge-with, update, and update! methods that provide significantly faster performance than their normal Clojure counterparts.