Functions
Link copied to clipboard
Link copied to clipboard
fun <T, U> fromAsync(source: AsyncIterable<T>, transform: (item: T, index: Int) -> U): Promise<ReadonlyArray<U>>
fun <T, U> fromAsync(source: JsIterable<PromiseResult<T>>, transform: (item: T, index: Int) -> U): Promise<ReadonlyArray<U>>
fun <T, U> fromAsync(source: ReadonlyArray<PromiseResult<T>>, transform: (item: T, index: Int) -> U): Promise<ReadonlyArray<U>>