Add more tests for collections implemented by delegation

This commit is contained in:
Dmitry Petrov
2020-09-29 21:26:47 +03:00
parent 3c380faeb5
commit f79afd67f4
20 changed files with 2488 additions and 46 deletions
@@ -1,4 +1,19 @@
class SimplePlatform
class DGenericIterator<T>(d: Iterator<T>) : Iterator<T> by d
open class TargetPlatform(val componentPlatforms: Set<SimplePlatform>) :
Collection<SimplePlatform> by componentPlatforms
class DGenericListIterator<T>(d: ListIterator<T>) : ListIterator<T> by d
class DGenericIterable<T>(d: Iterable<T>) : Iterable<T> by d
class DGenericCollection<T>(d: Collection<T>) : Collection<T> by d
class DGenericSet<T>(d: Set<T>) : Set<T> by d
class DGenericList<T>(d: List<T>) : List<T> by d
class DGenericMap<K, V>(d: Map<K, V>) : Map<K, V> by d
class DGenericMapEntry<K, V>(d: Map.Entry<K, V>) : Map.Entry<K, V> by d
class DGenericCollectionBySet<T>(d: Set<T>) : Collection<T> by d
class DGenericCollectionByList<T>(d: List<T>) : Collection<T> by d
@@ -1,22 +1,174 @@
@kotlin.Metadata
public final class SimplePlatform {
public final class DGenericCollection {
// source: 'collectionByDelegation.kt'
public method <init>(): void
}
@kotlin.Metadata
public class TargetPlatform {
// source: 'collectionByDelegation.kt'
private final @org.jetbrains.annotations.NotNull field componentPlatforms: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: SimplePlatform): boolean
public synthetic method add(p0: java.lang.Object): boolean
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: SimplePlatform): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericCollectionByList {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericCollectionBySet {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericIterable {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DGenericIterator {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public method next(): java.lang.Object
public method remove(): void
}
@kotlin.Metadata
public final class DGenericList {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int, p1: java.lang.Object): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method get(p0: int): java.lang.Object
public method getSize(): int
public method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public method remove(p0: int): java.lang.Object
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public method set(p0: int, p1: java.lang.Object): java.lang.Object
public bridge final method size(): int
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericListIterator {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public method add(p0: java.lang.Object): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public method next(): java.lang.Object
public method nextIndex(): int
public method previous(): java.lang.Object
public method previousIndex(): int
public method remove(): void
public method set(p0: java.lang.Object): void
}
@kotlin.Metadata
public final class DGenericMap {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method containsKey(p0: java.lang.Object): boolean
public method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putAll(p0: java.util.Map): void
public method remove(p0: java.lang.Object): java.lang.Object
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DGenericMapEntry {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public method getKey(): java.lang.Object
public method getValue(): java.lang.Object
public method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DGenericSet {
// source: 'collectionByDelegation.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public final @org.jetbrains.annotations.NotNull method getComponentPlatforms(): java.util.Set
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
@@ -0,0 +1,19 @@
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
@@ -0,0 +1,209 @@
@kotlin.Metadata
public final class DStringCollection {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringCollectionByList {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringCollectionBySet {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringIterable {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DStringIterator {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public synthetic bridge method next(): java.lang.Object
public @org.jetbrains.annotations.NotNull method next(): java.lang.String
public method remove(): void
}
@kotlin.Metadata
public final class DStringList {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public synthetic method add(p0: int, p1: java.lang.Object): void
public method add(p0: int, p1: java.lang.String): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public synthetic bridge method get(p0: int): java.lang.Object
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.String
public method getSize(): int
public method indexOf(@org.jetbrains.annotations.NotNull p0: java.lang.String): int
public bridge final method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(@org.jetbrains.annotations.NotNull p0: java.lang.String): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public synthetic method remove(p0: int): java.lang.Object
public method remove(p0: int): java.lang.String
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public synthetic method set(p0: int, p1: java.lang.Object): java.lang.Object
public method set(p0: int, p1: java.lang.String): java.lang.String
public bridge final method size(): int
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringListIterator {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public synthetic method add(p0: java.lang.Object): void
public method add(p0: java.lang.String): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public synthetic bridge method next(): java.lang.Object
public @org.jetbrains.annotations.NotNull method next(): java.lang.String
public method nextIndex(): int
public synthetic bridge method previous(): java.lang.Object
public @org.jetbrains.annotations.NotNull method previous(): java.lang.String
public method previousIndex(): int
public method remove(): void
public synthetic method set(p0: java.lang.Object): void
public method set(p0: java.lang.String): void
}
@kotlin.Metadata
public final class DStringMap {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method containsKey(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method containsKey(p0: java.lang.Object): boolean
public method containsValue(@org.jetbrains.annotations.NotNull p0: java.lang.Number): boolean
public bridge final method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.Number
public bridge final method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public synthetic method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method put(p0: java.lang.String, p1: java.lang.Number): java.lang.Number
public method putAll(p0: java.util.Map): void
public method remove(p0: java.lang.Object): java.lang.Object
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DStringMapEntry {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public synthetic bridge method getKey(): java.lang.Object
public @org.jetbrains.annotations.NotNull method getKey(): java.lang.String
public @org.jetbrains.annotations.NotNull method getValue(): java.lang.Number
public synthetic bridge method getValue(): java.lang.Object
public method setValue(p0: java.lang.Number): java.lang.Number
public synthetic method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DStringSet {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,20 @@
// FULL_JDK
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
@@ -0,0 +1,230 @@
@kotlin.Metadata
public final class DStringCollection {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringCollectionByList {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringCollectionBySet {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringIterable {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DStringIterator {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public synthetic bridge method next(): java.lang.Object
public @org.jetbrains.annotations.NotNull method next(): java.lang.String
public method remove(): void
}
@kotlin.Metadata
public final class DStringList {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public synthetic method add(p0: int, p1: java.lang.Object): void
public method add(p0: int, p1: java.lang.String): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public synthetic bridge method get(p0: int): java.lang.Object
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.String
public method getSize(): int
public method indexOf(@org.jetbrains.annotations.NotNull p0: java.lang.String): int
public bridge final method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(@org.jetbrains.annotations.NotNull p0: java.lang.String): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public synthetic method remove(p0: int): java.lang.Object
public method remove(p0: int): java.lang.String
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method replaceAll(p0: java.util.function.UnaryOperator): void
public method retainAll(p0: java.util.Collection): boolean
public synthetic method set(p0: int, p1: java.lang.Object): java.lang.Object
public method set(p0: int, p1: java.lang.String): java.lang.String
public bridge final method size(): int
public method sort(p0: java.util.Comparator): void
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringListIterator {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public synthetic method add(p0: java.lang.Object): void
public method add(p0: java.lang.String): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public synthetic bridge method next(): java.lang.Object
public @org.jetbrains.annotations.NotNull method next(): java.lang.String
public method nextIndex(): int
public synthetic bridge method previous(): java.lang.Object
public @org.jetbrains.annotations.NotNull method previous(): java.lang.String
public method previousIndex(): int
public method remove(): void
public synthetic method set(p0: java.lang.Object): void
public method set(p0: java.lang.String): void
}
@kotlin.Metadata
public final class DStringMap {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public synthetic method compute(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method compute(p0: java.lang.String, p1: java.util.function.BiFunction): java.lang.Number
public synthetic method computeIfAbsent(p0: java.lang.Object, p1: java.util.function.Function): java.lang.Object
public method computeIfAbsent(p0: java.lang.String, p1: java.util.function.Function): java.lang.Number
public synthetic method computeIfPresent(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method computeIfPresent(p0: java.lang.String, p1: java.util.function.BiFunction): java.lang.Number
public method containsKey(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method containsKey(p0: java.lang.Object): boolean
public method containsValue(@org.jetbrains.annotations.NotNull p0: java.lang.Number): boolean
public bridge final method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.Number
public bridge final method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public synthetic method merge(p0: java.lang.Object, p1: java.lang.Object, p2: java.util.function.BiFunction): java.lang.Object
public method merge(p0: java.lang.String, p1: java.lang.Number, p2: java.util.function.BiFunction): java.lang.Number
public synthetic method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method put(p0: java.lang.String, p1: java.lang.Number): java.lang.Number
public method putAll(p0: java.util.Map): void
public synthetic method putIfAbsent(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putIfAbsent(p0: java.lang.String, p1: java.lang.Number): java.lang.Number
public method remove(p0: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object, p1: java.lang.Object): boolean
public synthetic method replace(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public synthetic method replace(p0: java.lang.Object, p1: java.lang.Object, p2: java.lang.Object): boolean
public method replace(p0: java.lang.String, p1: java.lang.Number): java.lang.Number
public method replace(p0: java.lang.String, p1: java.lang.Number, p2: java.lang.Number): boolean
public method replaceAll(p0: java.util.function.BiFunction): void
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DStringMapEntry {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public synthetic bridge method getKey(): java.lang.Object
public @org.jetbrains.annotations.NotNull method getKey(): java.lang.String
public @org.jetbrains.annotations.NotNull method getValue(): java.lang.Number
public synthetic bridge method getValue(): java.lang.Object
public method setValue(p0: java.lang.Number): java.lang.Number
public synthetic method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DStringSet {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public synthetic method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,232 @@
@kotlin.Metadata
public final class DStringCollection {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringCollectionByList {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringCollectionBySet {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringIterable {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DStringIterator {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public synthetic bridge method next(): java.lang.Object
public @org.jetbrains.annotations.NotNull method next(): java.lang.String
public method remove(): void
}
@kotlin.Metadata
public final class DStringList {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public synthetic bridge method add(p0: int, p1: java.lang.Object): void
public method add(p0: int, p1: java.lang.String): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public synthetic bridge method get(p0: int): java.lang.Object
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.String
public method getSize(): int
public method indexOf(@org.jetbrains.annotations.NotNull p0: java.lang.String): int
public bridge final method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(@org.jetbrains.annotations.NotNull p0: java.lang.String): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public synthetic bridge method remove(p0: int): java.lang.Object
public method remove(p0: int): java.lang.String
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method replaceAll(p0: java.util.function.UnaryOperator): void
public method retainAll(p0: java.util.Collection): boolean
public synthetic bridge method set(p0: int, p1: java.lang.Object): java.lang.Object
public method set(p0: int, p1: java.lang.String): java.lang.String
public bridge final method size(): int
public method sort(p0: java.util.Comparator): void
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringListIterator {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public synthetic bridge method add(p0: java.lang.Object): void
public method add(p0: java.lang.String): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public synthetic bridge method next(): java.lang.Object
public @org.jetbrains.annotations.NotNull method next(): java.lang.String
public method nextIndex(): int
public synthetic bridge method previous(): java.lang.Object
public @org.jetbrains.annotations.NotNull method previous(): java.lang.String
public method previousIndex(): int
public method remove(): void
public synthetic bridge method set(p0: java.lang.Object): void
public method set(p0: java.lang.String): void
}
@kotlin.Metadata
public final class DStringMap {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public synthetic bridge method compute(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method compute(p0: java.lang.String, p1: java.util.function.BiFunction): java.lang.Number
public synthetic bridge method computeIfAbsent(p0: java.lang.Object, p1: java.util.function.Function): java.lang.Object
public method computeIfAbsent(p0: java.lang.String, p1: java.util.function.Function): java.lang.Number
public synthetic bridge method computeIfPresent(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method computeIfPresent(p0: java.lang.String, p1: java.util.function.BiFunction): java.lang.Number
public method containsKey(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method containsKey(p0: java.lang.Object): boolean
public method containsValue(@org.jetbrains.annotations.NotNull p0: java.lang.Number): boolean
public bridge final method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.Number
public bridge final method get(p0: java.lang.Object): java.lang.Number
public synthetic bridge method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public synthetic bridge method merge(p0: java.lang.Object, p1: java.lang.Object, p2: java.util.function.BiFunction): java.lang.Object
public method merge(p0: java.lang.String, p1: java.lang.Number, p2: java.util.function.BiFunction): java.lang.Number
public synthetic bridge method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method put(p0: java.lang.String, p1: java.lang.Number): java.lang.Number
public method putAll(p0: java.util.Map): void
public synthetic bridge method putIfAbsent(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putIfAbsent(p0: java.lang.String, p1: java.lang.Number): java.lang.Number
public method remove(p0: java.lang.Object): java.lang.Number
public synthetic bridge method remove(p0: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object, p1: java.lang.Object): boolean
public synthetic bridge method replace(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public synthetic bridge method replace(p0: java.lang.Object, p1: java.lang.Object, p2: java.lang.Object): boolean
public method replace(p0: java.lang.String, p1: java.lang.Number): java.lang.Number
public method replace(p0: java.lang.String, p1: java.lang.Number, p2: java.lang.Number): boolean
public method replaceAll(p0: java.util.function.BiFunction): void
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DStringMapEntry {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public synthetic bridge method getKey(): java.lang.Object
public @org.jetbrains.annotations.NotNull method getKey(): java.lang.String
public @org.jetbrains.annotations.NotNull method getValue(): java.lang.Number
public synthetic bridge method getValue(): java.lang.Object
public method setValue(p0: java.lang.Number): java.lang.Number
public synthetic bridge method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DStringSet {
// source: 'collectionByDelegation2WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,211 @@
@kotlin.Metadata
public final class DStringCollection {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringCollectionByList {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringCollectionBySet {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringIterable {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DStringIterator {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public synthetic bridge method next(): java.lang.Object
public @org.jetbrains.annotations.NotNull method next(): java.lang.String
public method remove(): void
}
@kotlin.Metadata
public final class DStringList {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public synthetic bridge method add(p0: int, p1: java.lang.Object): void
public method add(p0: int, p1: java.lang.String): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public synthetic bridge method get(p0: int): java.lang.Object
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.String
public method getSize(): int
public method indexOf(@org.jetbrains.annotations.NotNull p0: java.lang.String): int
public bridge final method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(@org.jetbrains.annotations.NotNull p0: java.lang.String): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public synthetic bridge method remove(p0: int): java.lang.Object
public method remove(p0: int): java.lang.String
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public synthetic bridge method set(p0: int, p1: java.lang.Object): java.lang.Object
public method set(p0: int, p1: java.lang.String): java.lang.String
public bridge final method size(): int
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DStringListIterator {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public synthetic bridge method add(p0: java.lang.Object): void
public method add(p0: java.lang.String): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public synthetic bridge method next(): java.lang.Object
public @org.jetbrains.annotations.NotNull method next(): java.lang.String
public method nextIndex(): int
public synthetic bridge method previous(): java.lang.Object
public @org.jetbrains.annotations.NotNull method previous(): java.lang.String
public method previousIndex(): int
public method remove(): void
public synthetic bridge method set(p0: java.lang.Object): void
public method set(p0: java.lang.String): void
}
@kotlin.Metadata
public final class DStringMap {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method containsKey(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method containsKey(p0: java.lang.Object): boolean
public method containsValue(@org.jetbrains.annotations.NotNull p0: java.lang.Number): boolean
public bridge final method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.Number
public bridge final method get(p0: java.lang.Object): java.lang.Number
public synthetic bridge method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public synthetic bridge method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method put(p0: java.lang.String, p1: java.lang.Number): java.lang.Number
public method putAll(p0: java.util.Map): void
public method remove(p0: java.lang.Object): java.lang.Number
public synthetic bridge method remove(p0: java.lang.Object): java.lang.Object
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DStringMapEntry {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public synthetic bridge method getKey(): java.lang.Object
public @org.jetbrains.annotations.NotNull method getKey(): java.lang.String
public @org.jetbrains.annotations.NotNull method getValue(): java.lang.Number
public synthetic bridge method getValue(): java.lang.Object
public method setValue(p0: java.lang.Number): java.lang.Number
public synthetic bridge method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DStringSet {
// source: 'collectionByDelegation2.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method add(p0: java.lang.String): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,19 @@
class DIntIterator(d: Iterator<Int>) : Iterator<Int> by d
class DIntListIterator(d: ListIterator<Int>) : ListIterator<Int> by d
class DIntIterable(d: Iterable<Int>) : Iterable<Int> by d
class DIntCollection(d: Collection<Int>) : Collection<Int> by d
class DIntSet(d: Set<Int>) : Set<Int> by d
class DIntList(d: List<Int>) : List<Int> by d
class DIntMap(d: Map<Int, Double>) : Map<Int, Double> by d
class DIntMapEntry(d: Map.Entry<Int, Double>) : Map.Entry<Int, Double> by d
class DIntCollectionBySet(d: Set<Int>) : Collection<Int> by d
class DIntCollectionByList(d: List<Int>) : Collection<Int> by d
@@ -0,0 +1,209 @@
@kotlin.Metadata
public final class DIntCollection {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public method add(p0: int): boolean
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntCollectionByList {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int): boolean
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntCollectionBySet {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: int): boolean
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntIterable {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DIntIterator {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public @org.jetbrains.annotations.NotNull method next(): java.lang.Integer
public synthetic bridge method next(): java.lang.Object
public method remove(): void
}
@kotlin.Metadata
public final class DIntList {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int): boolean
public method add(p0: int, p1: int): void
public synthetic method add(p0: int, p1: java.lang.Object): void
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.Integer
public synthetic bridge method get(p0: int): java.lang.Object
public method getSize(): int
public method indexOf(p0: int): int
public bridge final method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(p0: int): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public method remove(p0: int): int
public synthetic method remove(p0: int): java.lang.Object
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public method set(p0: int, p1: int): java.lang.Integer
public synthetic method set(p0: int, p1: java.lang.Object): java.lang.Object
public bridge final method size(): int
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntListIterator {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public method add(p0: int): void
public synthetic method add(p0: java.lang.Object): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public @org.jetbrains.annotations.NotNull method next(): java.lang.Integer
public synthetic bridge method next(): java.lang.Object
public method nextIndex(): int
public @org.jetbrains.annotations.NotNull method previous(): java.lang.Integer
public synthetic bridge method previous(): java.lang.Object
public method previousIndex(): int
public method remove(): void
public method set(p0: int): void
public synthetic method set(p0: java.lang.Object): void
}
@kotlin.Metadata
public final class DIntMap {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method containsKey(p0: int): boolean
public bridge final method containsKey(p0: java.lang.Object): boolean
public method containsValue(p0: double): boolean
public bridge final method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(p0: int): java.lang.Double
public bridge final method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public method put(p0: int, p1: double): java.lang.Double
public synthetic method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putAll(p0: java.util.Map): void
public method remove(p0: java.lang.Object): java.lang.Object
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DIntMapEntry {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public @org.jetbrains.annotations.NotNull method getKey(): java.lang.Integer
public synthetic bridge method getKey(): java.lang.Object
public @org.jetbrains.annotations.NotNull method getValue(): java.lang.Double
public synthetic bridge method getValue(): java.lang.Object
public method setValue(p0: double): java.lang.Double
public synthetic method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DIntSet {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: int): boolean
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,22 @@
// FULL_JDK
// See also: https://youtrack.jetbrains.com/issue/KT-42330
class DIntIterator(d: Iterator<Int>) : Iterator<Int> by d
class DIntListIterator(d: ListIterator<Int>) : ListIterator<Int> by d
class DIntIterable(d: Iterable<Int>) : Iterable<Int> by d
class DIntCollection(d: Collection<Int>) : Collection<Int> by d
class DIntSet(d: Set<Int>) : Set<Int> by d
class DIntList(d: List<Int>) : List<Int> by d
class DIntMap(d: Map<Int, Double>) : Map<Int, Double> by d
class DIntMapEntry(d: Map.Entry<Int, Double>) : Map.Entry<Int, Double> by d
class DIntCollectionBySet(d: Set<Int>) : Collection<Int> by d
class DIntCollectionByList(d: List<Int>) : Collection<Int> by d
@@ -0,0 +1,230 @@
@kotlin.Metadata
public final class DIntCollection {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public method add(p0: int): boolean
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntCollectionByList {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int): boolean
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntCollectionBySet {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: int): boolean
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntIterable {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DIntIterator {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public @org.jetbrains.annotations.NotNull method next(): java.lang.Integer
public synthetic bridge method next(): java.lang.Object
public method remove(): void
}
@kotlin.Metadata
public final class DIntList {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int): boolean
public method add(p0: int, p1: int): void
public synthetic method add(p0: int, p1: java.lang.Object): void
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.Integer
public synthetic bridge method get(p0: int): java.lang.Object
public method getSize(): int
public method indexOf(p0: int): int
public bridge final method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(p0: int): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public method remove(p0: int): int
public synthetic method remove(p0: int): java.lang.Object
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method replaceAll(p0: java.util.function.UnaryOperator): void
public method retainAll(p0: java.util.Collection): boolean
public method set(p0: int, p1: int): java.lang.Integer
public synthetic method set(p0: int, p1: java.lang.Object): java.lang.Object
public bridge final method size(): int
public method sort(p0: java.util.Comparator): void
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntListIterator {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public method add(p0: int): void
public synthetic method add(p0: java.lang.Object): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public @org.jetbrains.annotations.NotNull method next(): java.lang.Integer
public synthetic bridge method next(): java.lang.Object
public method nextIndex(): int
public @org.jetbrains.annotations.NotNull method previous(): java.lang.Integer
public synthetic bridge method previous(): java.lang.Object
public method previousIndex(): int
public method remove(): void
public method set(p0: int): void
public synthetic method set(p0: java.lang.Object): void
}
@kotlin.Metadata
public final class DIntMap {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method compute(p0: java.lang.Integer, p1: java.util.function.BiFunction): java.lang.Double
public synthetic method compute(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method computeIfAbsent(p0: java.lang.Integer, p1: java.util.function.Function): java.lang.Double
public synthetic method computeIfAbsent(p0: java.lang.Object, p1: java.util.function.Function): java.lang.Object
public method computeIfPresent(p0: java.lang.Integer, p1: java.util.function.BiFunction): java.lang.Double
public synthetic method computeIfPresent(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method containsKey(p0: int): boolean
public bridge final method containsKey(p0: java.lang.Object): boolean
public method containsValue(p0: double): boolean
public bridge final method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(p0: int): java.lang.Double
public bridge final method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public method merge(p0: java.lang.Integer, p1: java.lang.Double, p2: java.util.function.BiFunction): java.lang.Double
public synthetic method merge(p0: java.lang.Object, p1: java.lang.Object, p2: java.util.function.BiFunction): java.lang.Object
public method put(p0: int, p1: double): java.lang.Double
public synthetic method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putAll(p0: java.util.Map): void
public method putIfAbsent(p0: java.lang.Integer, p1: java.lang.Double): java.lang.Double
public synthetic method putIfAbsent(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object, p1: java.lang.Object): boolean
public method replace(p0: java.lang.Integer, p1: java.lang.Double): java.lang.Double
public method replace(p0: java.lang.Integer, p1: java.lang.Double, p2: java.lang.Double): boolean
public synthetic method replace(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public synthetic method replace(p0: java.lang.Object, p1: java.lang.Object, p2: java.lang.Object): boolean
public method replaceAll(p0: java.util.function.BiFunction): void
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DIntMapEntry {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public @org.jetbrains.annotations.NotNull method getKey(): java.lang.Integer
public synthetic bridge method getKey(): java.lang.Object
public @org.jetbrains.annotations.NotNull method getValue(): java.lang.Double
public synthetic bridge method getValue(): java.lang.Object
public method setValue(p0: double): java.lang.Double
public synthetic method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DIntSet {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: int): boolean
public synthetic method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,232 @@
@kotlin.Metadata
public final class DIntCollection {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public method add(p0: int): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntCollectionByList {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntCollectionBySet {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: int): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntIterable {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DIntIterator {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public @org.jetbrains.annotations.NotNull method next(): java.lang.Integer
public synthetic bridge method next(): java.lang.Object
public method remove(): void
}
@kotlin.Metadata
public final class DIntList {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int): boolean
public method add(p0: int, p1: int): void
public synthetic bridge method add(p0: int, p1: java.lang.Object): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.Integer
public synthetic bridge method get(p0: int): java.lang.Object
public method getSize(): int
public method indexOf(p0: int): int
public bridge final method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(p0: int): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public method remove(p0: int): int
public synthetic bridge method remove(p0: int): java.lang.Object
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method replaceAll(p0: java.util.function.UnaryOperator): void
public method retainAll(p0: java.util.Collection): boolean
public method set(p0: int, p1: int): java.lang.Integer
public synthetic bridge method set(p0: int, p1: java.lang.Object): java.lang.Object
public bridge final method size(): int
public method sort(p0: java.util.Comparator): void
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntListIterator {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public method add(p0: int): void
public synthetic bridge method add(p0: java.lang.Object): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public @org.jetbrains.annotations.NotNull method next(): java.lang.Integer
public synthetic bridge method next(): java.lang.Object
public method nextIndex(): int
public @org.jetbrains.annotations.NotNull method previous(): java.lang.Integer
public synthetic bridge method previous(): java.lang.Object
public method previousIndex(): int
public method remove(): void
public method set(p0: int): void
public synthetic bridge method set(p0: java.lang.Object): void
}
@kotlin.Metadata
public final class DIntMap {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method compute(p0: int, p1: java.util.function.BiFunction): java.lang.Double
public synthetic bridge method compute(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method computeIfAbsent(p0: int, p1: java.util.function.Function): java.lang.Double
public synthetic bridge method computeIfAbsent(p0: java.lang.Object, p1: java.util.function.Function): java.lang.Object
public method computeIfPresent(p0: int, p1: java.util.function.BiFunction): java.lang.Double
public synthetic bridge method computeIfPresent(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method containsKey(p0: int): boolean
public bridge final method containsKey(p0: java.lang.Object): boolean
public method containsValue(p0: double): boolean
public bridge final method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(p0: int): java.lang.Double
public bridge final method get(p0: java.lang.Object): java.lang.Double
public synthetic bridge method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public method merge(p0: int, p1: double, p2: java.util.function.BiFunction): java.lang.Double
public synthetic bridge method merge(p0: java.lang.Object, p1: java.lang.Object, p2: java.util.function.BiFunction): java.lang.Object
public method put(p0: int, p1: double): java.lang.Double
public synthetic bridge method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putAll(p0: java.util.Map): void
public method putIfAbsent(p0: int, p1: double): java.lang.Double
public synthetic bridge method putIfAbsent(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object): java.lang.Double
public synthetic bridge method remove(p0: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object, p1: java.lang.Object): boolean
public method replace(p0: int, p1: double): java.lang.Double
public method replace(p0: int, p1: double, p2: double): boolean
public synthetic bridge method replace(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public synthetic bridge method replace(p0: java.lang.Object, p1: java.lang.Object, p2: java.lang.Object): boolean
public method replaceAll(p0: java.util.function.BiFunction): void
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DIntMapEntry {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public @org.jetbrains.annotations.NotNull method getKey(): java.lang.Integer
public synthetic bridge method getKey(): java.lang.Object
public @org.jetbrains.annotations.NotNull method getValue(): java.lang.Double
public synthetic bridge method getValue(): java.lang.Object
public method setValue(p0: double): java.lang.Double
public synthetic bridge method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DIntSet {
// source: 'collectionByDelegation3WithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: int): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,211 @@
@kotlin.Metadata
public final class DIntCollection {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public method add(p0: int): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntCollectionByList {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntCollectionBySet {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: int): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntIterable {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DIntIterator {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public @org.jetbrains.annotations.NotNull method next(): java.lang.Integer
public synthetic bridge method next(): java.lang.Object
public method remove(): void
}
@kotlin.Metadata
public final class DIntList {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int): boolean
public method add(p0: int, p1: int): void
public synthetic bridge method add(p0: int, p1: java.lang.Object): void
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.Integer
public synthetic bridge method get(p0: int): java.lang.Object
public method getSize(): int
public method indexOf(p0: int): int
public bridge final method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(p0: int): int
public bridge final method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public method remove(p0: int): int
public synthetic bridge method remove(p0: int): java.lang.Object
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public method set(p0: int, p1: int): java.lang.Integer
public synthetic bridge method set(p0: int, p1: java.lang.Object): java.lang.Object
public bridge final method size(): int
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DIntListIterator {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public method add(p0: int): void
public synthetic bridge method add(p0: java.lang.Object): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public @org.jetbrains.annotations.NotNull method next(): java.lang.Integer
public synthetic bridge method next(): java.lang.Object
public method nextIndex(): int
public @org.jetbrains.annotations.NotNull method previous(): java.lang.Integer
public synthetic bridge method previous(): java.lang.Object
public method previousIndex(): int
public method remove(): void
public method set(p0: int): void
public synthetic bridge method set(p0: java.lang.Object): void
}
@kotlin.Metadata
public final class DIntMap {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method containsKey(p0: int): boolean
public bridge final method containsKey(p0: java.lang.Object): boolean
public method containsValue(p0: double): boolean
public bridge final method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(p0: int): java.lang.Double
public bridge final method get(p0: java.lang.Object): java.lang.Double
public synthetic bridge method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public method put(p0: int, p1: double): java.lang.Double
public synthetic bridge method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putAll(p0: java.util.Map): void
public method remove(p0: java.lang.Object): java.lang.Double
public synthetic bridge method remove(p0: java.lang.Object): java.lang.Object
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DIntMapEntry {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public @org.jetbrains.annotations.NotNull method getKey(): java.lang.Integer
public synthetic bridge method getKey(): java.lang.Object
public @org.jetbrains.annotations.NotNull method getValue(): java.lang.Double
public synthetic bridge method getValue(): java.lang.Object
public method setValue(p0: double): java.lang.Double
public synthetic bridge method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DIntSet {
// source: 'collectionByDelegation3.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: int): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: int): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,20 @@
// FULL_JDK
class DGenericIterator<T>(d: Iterator<T>) : Iterator<T> by d
class DGenericListIterator<T>(d: ListIterator<T>) : ListIterator<T> by d
class DGenericIterable<T>(d: Iterable<T>) : Iterable<T> by d
class DGenericCollection<T>(d: Collection<T>) : Collection<T> by d
class DGenericSet<T>(d: Set<T>) : Set<T> by d
class DGenericList<T>(d: List<T>) : List<T> by d
class DGenericMap<K, V>(d: Map<K, V>) : Map<K, V> by d
class DGenericMapEntry<K, V>(d: Map.Entry<K, V>) : Map.Entry<K, V> by d
class DGenericCollectionBySet<T>(d: Set<T>) : Collection<T> by d
class DGenericCollectionByList<T>(d: List<T>) : Collection<T> by d
@@ -0,0 +1,195 @@
@kotlin.Metadata
public final class DGenericCollection {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericCollectionByList {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericCollectionBySet {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericIterable {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DGenericIterator {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public method next(): java.lang.Object
public method remove(): void
}
@kotlin.Metadata
public final class DGenericList {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int, p1: java.lang.Object): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method get(p0: int): java.lang.Object
public method getSize(): int
public method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public method remove(p0: int): java.lang.Object
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method replaceAll(p0: java.util.function.UnaryOperator): void
public method retainAll(p0: java.util.Collection): boolean
public method set(p0: int, p1: java.lang.Object): java.lang.Object
public bridge final method size(): int
public method sort(p0: java.util.Comparator): void
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericListIterator {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public method add(p0: java.lang.Object): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public method next(): java.lang.Object
public method nextIndex(): int
public method previous(): java.lang.Object
public method previousIndex(): int
public method remove(): void
public method set(p0: java.lang.Object): void
}
@kotlin.Metadata
public final class DGenericMap {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method compute(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method computeIfAbsent(p0: java.lang.Object, p1: java.util.function.Function): java.lang.Object
public method computeIfPresent(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method containsKey(p0: java.lang.Object): boolean
public method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public method merge(p0: java.lang.Object, p1: java.lang.Object, p2: java.util.function.BiFunction): java.lang.Object
public method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putAll(p0: java.util.Map): void
public method putIfAbsent(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object, p1: java.lang.Object): boolean
public method replace(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method replace(p0: java.lang.Object, p1: java.lang.Object, p2: java.lang.Object): boolean
public method replaceAll(p0: java.util.function.BiFunction): void
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DGenericMapEntry {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public method getKey(): java.lang.Object
public method getValue(): java.lang.Object
public method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DGenericSet {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -0,0 +1,195 @@
@kotlin.Metadata
public final class DGenericCollection {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Collection
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericCollectionByList {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericCollectionBySet {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method removeIf(p0: java.util.function.Predicate): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericIterable {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.lang.Iterable
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
}
@kotlin.Metadata
public final class DGenericIterator {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Iterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
public method hasNext(): boolean
public method next(): java.lang.Object
public method remove(): void
}
@kotlin.Metadata
public final class DGenericList {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.List
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
public method add(p0: int, p1: java.lang.Object): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: int, p1: java.util.Collection): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method get(p0: int): java.lang.Object
public method getSize(): int
public method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
public method remove(p0: int): java.lang.Object
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method replaceAll(p0: java.util.function.UnaryOperator): void
public method retainAll(p0: java.util.Collection): boolean
public method set(p0: int, p1: java.lang.Object): java.lang.Object
public bridge final method size(): int
public method sort(p0: java.util.Comparator): void
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@kotlin.Metadata
public final class DGenericListIterator {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.ListIterator
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
public method add(p0: java.lang.Object): void
public method hasNext(): boolean
public method hasPrevious(): boolean
public method next(): java.lang.Object
public method nextIndex(): int
public method previous(): java.lang.Object
public method previousIndex(): int
public method remove(): void
public method set(p0: java.lang.Object): void
}
@kotlin.Metadata
public final class DGenericMap {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
public method clear(): void
public method compute(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method computeIfAbsent(p0: java.lang.Object, p1: java.util.function.Function): java.lang.Object
public method computeIfPresent(p0: java.lang.Object, p1: java.util.function.BiFunction): java.lang.Object
public method containsKey(p0: java.lang.Object): boolean
public method containsValue(p0: java.lang.Object): boolean
public bridge final method entrySet(): java.util.Set
public @org.jetbrains.annotations.Nullable method get(p0: java.lang.Object): java.lang.Object
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
public method getSize(): int
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
public method isEmpty(): boolean
public bridge final method keySet(): java.util.Set
public method merge(p0: java.lang.Object, p1: java.lang.Object, p2: java.util.function.BiFunction): java.lang.Object
public method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method putAll(p0: java.util.Map): void
public method putIfAbsent(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object): java.lang.Object
public method remove(p0: java.lang.Object, p1: java.lang.Object): boolean
public method replace(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
public method replace(p0: java.lang.Object, p1: java.lang.Object, p2: java.lang.Object): boolean
public method replaceAll(p0: java.util.function.BiFunction): void
public bridge final method size(): int
public bridge final method values(): java.util.Collection
}
@kotlin.Metadata
public final class DGenericMapEntry {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Map$Entry
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
public method getKey(): java.lang.Object
public method getValue(): java.lang.Object
public method setValue(p0: java.lang.Object): java.lang.Object
}
@kotlin.Metadata
public final class DGenericSet {
// source: 'collectionByDelegationWithFullJdk.kt'
private synthetic final field $$delegate_0: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}
@@ -1,29 +0,0 @@
@kotlin.Metadata
public final class SimplePlatform {
// source: 'collectionByDelegation.kt'
public method <init>(): void
}
@kotlin.Metadata
public class TargetPlatform {
// source: 'collectionByDelegation.kt'
private final @org.jetbrains.annotations.NotNull field componentPlatforms: java.util.Set
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
public method add(p0: SimplePlatform): boolean
public synthetic bridge method add(p0: java.lang.Object): boolean
public method addAll(p0: java.util.Collection): boolean
public method clear(): void
public method contains(@org.jetbrains.annotations.NotNull p0: SimplePlatform): boolean
public bridge final method contains(p0: java.lang.Object): boolean
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public final @org.jetbrains.annotations.NotNull method getComponentPlatforms(): java.util.Set
public method getSize(): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
public method remove(p0: java.lang.Object): boolean
public method removeAll(p0: java.util.Collection): boolean
public method retainAll(p0: java.util.Collection): boolean
public bridge final method size(): int
public method toArray(): java.lang.Object[]
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
}