DslReadOnlyListProperty

Properties

Link copied to clipboard
abstract override val size: Int

Functions

Link copied to clipboard
abstract override fun add(element: T): Boolean
abstract fun add(index: Int, element: T)
Link copied to clipboard
abstract override fun addAll(elements: Collection<T>): Boolean
abstract fun addAll(index: Int, elements: Collection<T>): Boolean
Link copied to clipboard
abstract fun <R> bypassHooks(block: DslMutableList.BypassedHooks<T>.() -> R): R
Link copied to clipboard
abstract override fun clear()
Link copied to clipboard
abstract operator override fun contains(element: T): Boolean
Link copied to clipboard
abstract override fun containsAll(elements: Collection<T>): Boolean
Link copied to clipboard
abstract operator fun get(index: Int): T
Link copied to clipboard
abstract operator fun getValue(thisRef: Any?, property: KProperty<*>): MutableList<T>

Gets the value of the property as a mutable list of type T. The operations on this list is under the control of the DSL. DO NOT use this list when extracting the final list, as it will not be transformed.

Link copied to clipboard
abstract fun indexOf(element: T): Int
Link copied to clipboard
abstract override fun isEmpty(): Boolean
Link copied to clipboard
abstract operator override fun iterator(): Iterator<T>
Link copied to clipboard
abstract fun lastIndexOf(element: T): Int
Link copied to clipboard
abstract override fun listIterator(): MutableListIterator<T>
abstract override fun listIterator(index: Int): MutableListIterator<T>
Link copied to clipboard
abstract override fun remove(element: T): Boolean
Link copied to clipboard
abstract override fun removeAll(elements: Collection<T>): Boolean
Link copied to clipboard
abstract fun removeAt(index: Int): T
Link copied to clipboard
abstract override fun retainAll(elements: Collection<T>): Boolean
Link copied to clipboard
abstract operator fun set(index: Int, element: T): T
Link copied to clipboard
abstract override fun subList(fromIndex: Int, toIndex: Int): MutableList<T>