Inshallah
Inshallah

Reputation: 4814

Clojure finger trees and flexvec

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.

Upvotes: 7

Views: 482

Answers (1)

Inshallah
Inshallah

Reputation: 4814

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.

Upvotes: 1

Related Questions