jsAndWasm.com.adeo.kviewmodel.odyssey.ConcurrentHashMap.jsAndWasm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kviewmodel-odyssey Show documentation
Show all versions of kviewmodel-odyssey Show documentation
ViewModel for Multiplatform
The newest version!
package com.adeo.kviewmodel.odyssey
public actual class ConcurrentHashMap(
private val delegate: HashMap = HashMap()
) : MutableMap by delegate {
public actual constructor() : this(HashMap())
}