Files
kotlin/compiler/testData/codegen/bytecodeListing/collectionStubs/customMutableListIterator.txt
2020-09-22 15:26:34 +03:00

59 lines
3.2 KiB
Plaintext
Vendored

@kotlin.Metadata
public final class MyList$MyListIterator {
// source: 'customMutableListIterator.kt'
private final field end: int
private field index: int
private final @org.jetbrains.annotations.NotNull field list: java.util.ArrayList
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ArrayList, p1: int, p2: int): void
public method add(p0: java.lang.Object): void
public final method getIndex(): int
public final @org.jetbrains.annotations.NotNull method getList(): java.util.ArrayList
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
public final method setIndex(p0: int): void
public final inner class MyList$MyListIterator
}
@kotlin.Metadata
public final class MyList {
// source: 'customMutableListIterator.kt'
private final @org.jetbrains.annotations.NotNull field elements: java.util.ArrayList
public method <init>(): void
public method add(p0: int, p1: java.lang.Object): void
public method add(p0: java.lang.Object): boolean
public method addAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method addAll(p0: int, @org.jetbrains.annotations.NotNull p1: 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 final @org.jetbrains.annotations.NotNull method getElements(): java.util.ArrayList
public method getSize(): int
public method indexOf(p0: java.lang.Object): int
public method isEmpty(): boolean
public @org.jetbrains.annotations.NotNull method iterator(): MyList$MyListIterator
public synthetic bridge method iterator(): java.util.Iterator
public method lastIndexOf(p0: java.lang.Object): int
public @org.jetbrains.annotations.NotNull method listIterator(): MyList$MyListIterator
public synthetic bridge method listIterator(): java.util.ListIterator
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): MyList$MyListIterator
public synthetic bridge method listIterator(p0: int): java.util.ListIterator
public bridge final method remove(p0: int): java.lang.Object
public method remove(p0: java.lang.Object): boolean
public method removeAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
public method removeAt(p0: int): java.lang.Object
public method retainAll(@org.jetbrains.annotations.NotNull 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[]
public final inner class MyList$MyListIterator
}