Kotlin / kotlinx.collections.immutable

Immutable persistent collections for Kotlin
Apache License 2.0
1.12k stars 56 forks source link

Faster bulk operations for non-ordered sets #91

Closed belyaev-mikhail closed 3 years ago

belyaev-mikhail commented 3 years ago

In addition to union operation, intersection, difference and inclusion can also be sped up quite a bit. Inclusion (containsAll) is particularly important here because equals is implemented using it.

belyaev-mikhail commented 3 years ago

PR: #90 Previous issue: #83

belyaev-mikhail commented 3 years ago

Merged