kotlinx.collections.immutable
kotlinx.collections.immutable copied to clipboard
No orEmpty function for ImmutableList?
Can we add an extension function similar to List for ImmutableList?
@kotlin.internal.InlineOnly
public inline fun <T> ImmutableList<T>?.orEmpty(): ImmutableList<T> = this ?: persistentListOf()
Related https://github.com/Kotlin/kotlinx.collections.immutable/issues/10, https://github.com/Kotlin/kotlinx.collections.immutable/issues/181