Home
last modified time | relevance | path

Searched refs:ImmutableCollection (Results 1 – 9 of 9) sorted by relevance

/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/
DImmutableCollection.kt18 internal interface ImmutableCollection<out E>: Collection<E> interface
27 internal interface PersistentCollection<out E> : ImmutableCollection<E> {
DImmutableSet.kt19 internal interface ImmutableSet<out E>: Set<E>, ImmutableCollection<E>
DImmutableMap.kt26 override val values: ImmutableCollection<V>
DImmutableList.kt20 internal interface ImmutableList<out E> : List<E>, ImmutableCollection<E> {
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/adapters/
DReadOnlyCollectionAdapters.kt16 …s ImmutableCollectionAdapter<E>(private val impl: Collection<E>) : ImmutableCollection<E>, Collect… in <lambda>()
39 override val values: ImmutableCollection<V> = ImmutableCollectionAdapter(impl.values) in <lambda>()
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/implementations/persistentOrderedMap/
DPersistentOrderedMapContentViews.kt8 import androidx.compose.runtime.external.kotlinx.collections.immutable.ImmutableCollection in <lambda>()
40 …eredMapValues<K, V>(private val map: PersistentOrderedMap<K, V>) : ImmutableCollection<V>, Abstrac…
DPersistentOrderedMap.kt8 import androidx.compose.runtime.external.kotlinx.collections.immutable.ImmutableCollection
42 override val values: ImmutableCollection<V> in withValue()
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/implementations/immutableMap/
DPersistentHashMapContentViews.kt8 import androidx.compose.runtime.external.kotlinx.collections.immutable.ImmutableCollection in <lambda>()
40 …entHashMapValues<K, V>(private val map: PersistentHashMap<K, V>) : ImmutableCollection<V>, Abstrac…
DPersistentHashMap.kt8 import androidx.compose.runtime.external.kotlinx.collections.immutable.ImmutableCollection
21 override val values: ImmutableCollection<V>