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,007
  • 1
  • 18
  • 28

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
  • 67,502
  • 14
  • 150
  • 189