what's a good persistent collections framework for use in java?

前端 未结 13 1418
-上瘾入骨i
-上瘾入骨i 2020-12-01 06:39

By persistent collections I mean collections like those in clojure.

For example, I have a list with the elements (a,b,c). With a normal list, if I add d, my original

13条回答
  •  天命终不由人
    2020-12-01 07:09

    What about pcollections?

    You can also check out Clojure's implementation of persistent collections (PersistentHashMap, for instance).

提交回复
热议问题