Clojure finger trees and flexvec

485 Views Asked by At

I am looking for a persistent sequential datastructure that allows efficient random insertions and deletions. I found the following implementations:

Since there was not much activity in clojure.data.finger-tree for the last two years, and the others are relatively new, I was wondering if someone has experince of using any of these in production, and whether there are alternatives that I have overlooked.

1

There are 1 best solutions below

1
On

Another implementation clojure/core.rrb-vector was announced. Since it's in the clojure github account, it seems like it's going to be the de-facto implementation.