Package space.kscience.kmath.structures
Types
LazyStructureND
Link copied to clipboard
class LazyStructureND<out T>(scope: CoroutineScope, shape: IntArray, function: suspend (IntArray) -> T) : StructureND<T>
Content copied to clipboard
Functions
mapAsync
Link copied to clipboard
inline fun <T, R> StructureND<T>.mapAsync(scope: CoroutineScope, crossinline function: suspend (T) -> R): LazyStructureND<R>
Content copied to clipboard
mapAsyncIndexed
Link copied to clipboard
inline fun <T, R> StructureND<T>.mapAsyncIndexed(scope: CoroutineScope, crossinline function: suspend (T, index: IntArray) -> R): LazyStructureND<R>
Content copied to clipboard