ArrayMDList2

class ArrayMDList2<E>(val rowNumber: UInt, val columnNumber: UInt, data: KoneMutableArray<Any?>) : SettableMDList2<E> (source)

Constructors

Link copied to clipboard
constructor(rowNumber: UInt, columnNumber: UInt, data: KoneMutableArray<Any?>)

Properties

Link copied to clipboard
Link copied to clipboard
open override val columnNumber: UInt
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val rowNumber: UInt
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract val shape: MDShape
Link copied to clipboard
open val size: UInt

Functions

Link copied to clipboard
inline fun <E> MDList<E>.all(block: (value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> MDList2<E>.allIndexed(block: (rowIndex: UInt, columnIndex: UInt, value: E) -> Boolean): Boolean
inline fun <E> MDList<E>.allIndexed(block: (index: KoneUIntArray, value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> MDList<E>.any(block: (value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> MDList2<E>.anyIndexed(block: (rowIndex: UInt, columnIndex: UInt, value: E) -> Boolean): Boolean
inline fun <E> MDList<E>.anyIndexed(block: (index: KoneUIntArray, value: E) -> Boolean): Boolean
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
inline fun <E, R> MDList<E>.fold(initial: R, operation: (acc: R, E) -> R): R
Link copied to clipboard
inline fun <E, R> MDList2<E>.foldIndexed(initial: R, operation: (rowIndex: UInt, columnIndex: UInt, acc: R, E) -> R): R
inline fun <E, R> MDList<E>.foldIndexed(initial: R, operation: (index: KoneUIntArray, acc: R, E) -> R): R
Link copied to clipboard
inline fun <E> MDList<E>.forEach(block: (value: E) -> Unit)
Link copied to clipboard
inline fun <E> MDList2<E>.forEachIndexed(block: (rowIndex: UInt, columnIndex: UInt, value: E) -> Unit)
inline fun <E> MDList<E>.forEachIndexed(block: (index: KoneUIntArray, value: E) -> Unit)
Link copied to clipboard
abstract operator fun get(index: KoneUIntArray): E
open operator override fun get(rowIndex: UInt, columnIndex: UInt): E
Link copied to clipboard
operator fun <E> MDList<E>.get(vararg index: UInt): E
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
inline fun <E, R> MDList2<E>.map(transform: (E) -> R): MDList2<R>
inline fun <E, R> MDList<E>.map(transform: (E) -> R): MDList<R>
Link copied to clipboard
inline fun <E, R> MDList2<E>.mapIndexed(transform: (rowIndex: UInt, columnIndex: UInt, E) -> R): MDList2<R>
inline fun <E, R> MDList<E>.mapIndexed(transform: (index: KoneUIntArray, E) -> R): MDList<R>
Link copied to clipboard
inline fun <E> MDList<E>.none(block: (value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> MDList2<E>.noneIndexed(block: (rowIndex: UInt, columnIndex: UInt, value: E) -> Boolean): Boolean
inline fun <E> MDList<E>.noneIndexed(block: (index: KoneUIntArray, value: E) -> Boolean): Boolean
Link copied to clipboard
open operator override fun set(index: KoneUIntArray, element: E)
open operator override fun set(rowIndex: UInt, columnIndex: UInt, element: E)
Link copied to clipboard
operator fun <E> SettableMDList<E>.set(vararg index: UInt, element: E)
Link copied to clipboard
fun <E> MDList<E>.sum(): E
Link copied to clipboard
inline fun <E, A> MDList<E>.sumOf(selector: (E) -> A): A
Link copied to clipboard
inline fun <E, A> MDList2<E>.sumOfIndexed(selector: (rowIndex: UInt, columnIndex: UInt, E) -> A): A
inline fun <E, A> MDList<E>.sumOfIndexed(selector: (index: KoneUIntArray, E) -> A): A
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
inline fun <E> MDList<E>.withEach(block: E.() -> Unit)
Link copied to clipboard
inline fun <E> MDList2<E>.withEachIndexed(block: E.(rowIndex: UInt, columnIndex: UInt) -> Unit)
inline fun <E> MDList<E>.withEachIndexed(block: E.(index: KoneUIntArray) -> Unit)