1

I want to use immutable persistent collections, like the ones Clojure uses, in Kotlin. Which libraries can I use (both in the JVM and in Javascript)? How well they integrate with Kotlin?

dilvan
  • 2,109
  • 2
  • 20
  • 32

1 Answers1

2

As answered in this SO-Question, there are several Java libraries you can easily use in Kotlin:

The most interesting thing: Kotlin has its own solution, which can be found here: https://github.com/Kotlin/kotlinx.collections.immutable (based on PCollections).

s1m0nw1
  • 76,759
  • 17
  • 167
  • 196