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
class LazyArrayMDList1<E>(val size: UInt, generator: (index: UInt) -> E) : SettableMDList1<E>
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
class VirtualMDList<E>(val shape: MDShape, generator: (index: KoneUIntArray) -> E) : MDList<E>
Link copied to clipboard
class VirtualMDList1<E>(val size: UInt, generator: (index: UInt) -> E) : MDList1<E>
Link copied to clipboard
class VirtualMDList2<E>(val rowNumber: UInt, val columnNumber: UInt, generator: (rowIndex: UInt, columnIndex: UInt) -> E) : MDList2<E>
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
inline fun <E> ArrayMDList1(size: UInt, initializer: (index: UInt) -> E): ArrayMDList1<E>
Link copied to clipboard
inline fun <E> ArrayMDList2(rowNumber: UInt, columnNumber: UInt, initializer: (rowIndex: UInt, columnIndex: UInt) -> E): ArrayMDList2<E>