jsMain.org.kodein.di.internal.lang.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kodein-di-js Show documentation
Show all versions of kodein-di-js Show documentation
KODEIN Dependency Injection Core
package org.kodein.di.internal
internal actual fun newConcurrentMap(): MutableMap = HashMap()
internal actual fun newLinkedList(): MutableList = ArrayList()
internal actual fun newLinkedList(c: Collection): MutableList = ArrayList(c)
public actual inline fun maySynchronized(lock: Any?, block: () -> R): R = block()
© 2015 - 2024 Weber Informatics LLC | Privacy Policy