commonMain.co.touchlab.stately.collections.Functions.kt Maven / Gradle / Ivy
package co.touchlab.stately.collections
fun sharedMutableListOf(): IsoMutableList = IsoMutableList()
fun sharedMutableListOf(vararg items: T): IsoMutableList = IsoMutableList { mutableListOf(*items) }
fun sharedMutableSetOf(): IsoMutableSet = IsoMutableSet()
fun sharedMutableSetOf(vararg items: T): IsoMutableSet = IsoMutableSet { mutableSetOf(*items) }
fun sharedMutableMapOf(): IsoMutableMap = IsoMutableMap()
fun sharedMutableMapOf(vararg items: Pair): IsoMutableMap = IsoMutableMap { mutableMapOf(*items) }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy