Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class ArrayMDList2<E>(val rowNumber: UInt, val columnNumber: UInt, data: KoneMutableArray<Any?>) : SettableMDList2<E>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class LazyArrayMDList<E>(val shape: MDShape, offsetting: MDShapeOffsetting = MDShapeStrides(shape), generator: (index: KoneUIntArray) -> E) : SettableMDList<E>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class LazyArrayMDList2<E>(val rowNumber: UInt, val columnNumber: UInt, generator: (rowIndex: UInt, columnIndex: UInt) -> E) : SettableMDList2<E>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Functions
Link copied to clipboard
inline fun <E> ArrayMDList(shape: MDShape, offsetting: MDShapeOffsetting = MDShapeStrides(shape), initializer: (KoneUIntArray) -> E): ArrayMDList<E>
Link copied to clipboard
Link copied to clipboard
inline fun <E> ArrayMDList2(rowNumber: UInt, columnNumber: UInt, initializer: (rowIndex: UInt, columnIndex: UInt) -> E): ArrayMDList2<E>