fun add(element: E): kotlin.Boolean

fun add(index: kotlin.Int, element: E)

fun addAll(index: kotlin.Int, elements: kotlin.collections.Collection<E>): kotlin.Boolean

fun addAll(elements: kotlin.collections.Collection<E>): kotlin.Boolean

fun clear()

fun listIterator(): kotlin.collections.MutableListIterator<E>

fun listIterator(index: kotlin.Int): kotlin.collections.MutableListIterator<E>

fun remove(element: E): kotlin.Boolean

fun removeAll(elements: kotlin.collections.Collection<E>): kotlin.Boolean

fun removeAt(index: kotlin.Int): E

fun retainAll(elements: kotlin.collections.Collection<E>): kotlin.Boolean

operator fun set(index: kotlin.Int, element: E): E

fun subList(fromIndex: kotlin.Int, toIndex: kotlin.Int): kotlin.collections.MutableList<E>

operator fun contains(element: E): kotlin.Boolean

fun containsAll(elements: kotlin.collections.Collection<E>): kotlin.Boolean

operator fun get(index: kotlin.Int): E

fun indexOf(element: E): kotlin.Int

fun isEmpty(): kotlin.Boolean

operator fun iterator(): kotlin.collections.MutableIterator<E>

fun lastIndexOf(element: E): kotlin.Int

val size: kotlin.Int

open operator fun equals(other: kotlin.Any?): kotlin.Boolean

open fun hashCode(): kotlin.Int

open fun toString(): kotlin.String
