LazyArrayMDList1

class LazyArrayMDList1<E>(val size: UInt, generator: (index: UInt) -> E) : SettableMDList1<E> (source)

Constructors

Link copied to clipboard
constructor(size: UInt, generator: (index: UInt) -> E)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract val shape: MDShape
Link copied to clipboard
open override 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> MDList1<E>.allIndexed(block: (index: 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> 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
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> 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> 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(index: UInt): E
Link copied to clipboard
operator fun <E> MDList<E>.get(vararg index: UInt): E
Link copied to clipboard
inline fun <E, R> MDList1<E>.map(transform: (E) -> R): MDList1<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> 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> 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(index: 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> MDList1<E>.sumOfIndexed(selector: (index: 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> MDList<E>.withEachIndexed(block: E.(index: KoneUIntArray) -> Unit)