Robin Munn
Robin Munn
Peter Schuck's Clojure/west 2016 presentation is now on Youtube: https://www.youtube.com/watch?v=GibNOQVelFY
The Java implementation of the CHAMP data structure, by Steindorfer and Vinju (the authors of the http://michael.steindorfer.name/publications/oopsla15.pdf paper): https://github.com/usethesource/capsule Another implementation, by someone else, in Kotlin: https://github.com/norswap/triemap
Particularly well? Not unless the boxing/unboxing problem you mention can be solved. Better than the current PersistentHashMap? Absolutely; it suffers from the exact same boxing/unboxing issue for value types, so...
I've been working on an implementation of RRB Trees (I call them RRBVectors in my implementation) in a private Bitbucket repo for a while now, and it's getting close to...
I want to clean up the code some more before I submit a PR, but anyone interested in seeing my first pass at an implementation can start looking at https://github.com/rmunn/FSharpx.Collections/tree/rrb-vector....
@gsomix Pinging me was a good reminder. :-) But also, if you can do anything to get #87 merged that would be a big help. I need `master` to build...
Thanks @forki! I'll see what I can do about getting the RRB vector code into a mergeable state now.
@jackfoxy I am still interested, but I've had practically zero time to work on coding the past couple of months. I do have the code into a better state than...
@jackfoxy I've had a little bit more time to work on RRBVector, and discovered that my code isn't quite ready to release yet: my most recent change (implementing transients so...
I'm getting rather close to having something releasable. Right now I'm polishing up my tests for 100% code coverage, to make sure I don't have any lurking bugs in this...