|
|
fun <A> each(iterable: Iterable<A>, callback: CoroutineScope.(A) -> Unit): Unit |
|
|
fun <A, B : Any> map(iterable: Iterable<A>, mapper: CoroutineScope.(A) -> B): Collection<B>
fun <A, B : Any> map(iterable: Iterable<A>, filter: (A) -> Boolean, mapper: CoroutineScope.(A) -> B): List<B> |
|
|
fun <A> poolEach(iterable: Iterable<A>, callback: CoroutineScope.(A) -> Unit): Unit
fun <A> poolEach(threads: Int, name: String, iterable: Iterable<A>, callback: CoroutineScope.(A) -> Unit): Unit |
|
|
fun <A, B : Any> poolMap(iterable: Iterable<A>, mapper: CoroutineScope.(A) -> B): List<B>
fun <A, B : Any> poolMap(threads: Int, name: String, iterable: Iterable<A>, mapper: CoroutineScope.(A) -> B): List<B> |
|
|
fun <A> with(iterable: Iterable<A>, callback: A.() -> Unit): Unit |