LazyStructureND
class LazyStructureND<out T>(val scope: CoroutineScope, val shape: ShapeND, val function: suspend (IntArray) -> T) : StructureND<T> (source)
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <T, R> StructureND<T>.mapAsync(scope: CoroutineScope, crossinline function: suspend (T) -> R): LazyStructureND<R>
Link copied to clipboard
inline fun <T, R> StructureND<T>.mapAsyncIndexed(scope: CoroutineScope, crossinline function: suspend (T, index: IntArray) -> R): LazyStructureND<R>
PENDING would benefit from KEEP-176