Package-level declarations

Functions

Link copied to clipboard
inline fun <E> MDList<E>.all(block: (value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> MDList1<E>.allIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
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> MDList1<E>.anyIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
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
inline fun <E, R> MDList<E>.fold(initial: R, operation: (acc: R, E) -> R): R
Link copied to clipboard
inline fun <E, R> MDList1<E>.foldIndexed(initial: R, operation: (index: UInt, acc: R, E) -> R): R
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> MDList1<E>.forEachIndexed(block: (index: UInt, value: E) -> Unit)
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
inline fun <E, R> MDList1<E>.map(transform: (E) -> R): MDList1<R>
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> MDList1<E>.mapIndexed(transform: (index: UInt, E) -> R): MDList1<R>
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> MDList1<E>.noneIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
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
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> MDList1<E>.sumOfIndexed(selector: (index: UInt, E) -> A): A
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
inline fun <E> MDList<E>.withEach(block: E.() -> Unit)
Link copied to clipboard
inline fun <E> MDList1<E>.withEachIndexed(block: E.(index: UInt) -> Unit)
inline fun <E> MDList2<E>.withEachIndexed(block: E.(rowIndex: UInt, columnIndex: UInt) -> Unit)
inline fun <E> MDList<E>.withEachIndexed(block: E.(index: KoneUIntArray) -> Unit)