All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.co.touchlab.stately.collections.IsoMutableSet.kt Maven / Gradle / Ivy

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