KtTypeScope:
fun contains(element: AAA): kotlin.Boolean
fun containsAll(elements: kotlin.collections.Collection<AAA>): kotlin.Boolean
fun get(index: kotlin.Int): AAA
fun indexOf(element: AAA): kotlin.Int
fun isEmpty(): kotlin.Boolean
fun iterator(): kotlin.collections.Iterator<AAA>
fun lastIndexOf(element: AAA): kotlin.Int
fun listIterator(): kotlin.collections.ListIterator<AAA>
fun listIterator(index: kotlin.Int): kotlin.collections.ListIterator<AAA>
fun subList(fromIndex: kotlin.Int, toIndex: kotlin.Int): kotlin.collections.List<AAA>
val size: kotlin.Int
fun equals(other: kotlin.Any?): kotlin.Boolean
fun hashCode(): kotlin.Int
fun toString(): kotlin.String
fun getFirst(): AAA
fun getLast(): AAA


Declaration Scope:
fun contains(element: E): kotlin.Boolean
fun containsAll(elements: kotlin.collections.Collection<E>): kotlin.Boolean
fun get(index: kotlin.Int): E
fun indexOf(element: E): kotlin.Int
fun isEmpty(): kotlin.Boolean
fun iterator(): kotlin.collections.Iterator<E>
fun lastIndexOf(element: E): kotlin.Int
fun listIterator(): kotlin.collections.ListIterator<E>
fun listIterator(index: kotlin.Int): kotlin.collections.ListIterator<E>
fun subList(fromIndex: kotlin.Int, toIndex: kotlin.Int): kotlin.collections.List<E>
val size: kotlin.Int
fun equals(other: kotlin.Any?): kotlin.Boolean
fun hashCode(): kotlin.Int
fun toString(): kotlin.String
fun getFirst(): E
fun getLast(): E

