672b5ba0d7
We drop Kotlin function 'remove' or 'getOrDefault' from JvmMappedScope, if it has platform-dependent annotation, and the bound Java class scope does not contain a function with the same signature. #KT-57268 Fixed
22 lines
732 B
Kotlin
Vendored
22 lines
732 B
Kotlin
Vendored
// JVM_ABI_K1_K2_DIFF: KT-65323
|
|
|
|
class DStringIterator(d: Iterator<String>) : Iterator<String> by d
|
|
|
|
class DStringListIterator(d: ListIterator<String>) : ListIterator<String> by d
|
|
|
|
class DStringIterable(d: Iterable<String>) : Iterable<String> by d
|
|
|
|
class DStringCollection(d: Collection<String>) : Collection<String> by d
|
|
|
|
class DStringSet(d: Set<String>) : Set<String> by d
|
|
|
|
class DStringList(d: List<String>) : List<String> by d
|
|
|
|
class DStringMap(d: Map<String, Number>) : Map<String, Number> by d
|
|
|
|
class DStringMapEntry(d: Map.Entry<String, Number>) : Map.Entry<String, Number> by d
|
|
|
|
class DStringCollectionBySet(d: Set<String>) : Collection<String> by d
|
|
|
|
class DStringCollectionByList(d: List<String>) : Collection<String> by d
|