commonMain.co.touchlab.stately.collections.IsoMutableSet.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stately-iso-collections-js Show documentation
Show all versions of stately-iso-collections-js Show documentation
Multithreaded Kotlin Multiplatform Utilities
package co.touchlab.stately.collections
import co.touchlab.stately.isolate.StateHolder
import co.touchlab.stately.isolate.StateRunner
import co.touchlab.stately.isolate.createState
open class IsoMutableSet internal constructor(stateHolder: StateHolder>) :
IsoMutableCollection(stateHolder), MutableSet {
constructor(stateRunner: StateRunner? = null, producer: () -> MutableSet = { mutableSetOf() }) : this(createState(stateRunner, producer))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy