public class Parallel
public static Parallel INSTANCE
@NotNull
public <A,B> java.util.Collection<B> map(@NotNull
java.lang.Iterable<? extends A> iterable,
@NotNull
kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope,? super A,? extends B> mapper)
@NotNull
public <A,B> java.util.List<B> map(@NotNull
java.lang.Iterable<? extends A> iterable,
@NotNull
kotlin.jvm.functions.Function1<? super A,java.lang.Boolean> filter,
@NotNull
kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope,? super A,? extends B> mapper)
public <A> void each(@NotNull
java.lang.Iterable<? extends A> iterable,
@NotNull
kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope,? super A,kotlin.Unit> callback)
public <A> void with(@NotNull
java.lang.Iterable<? extends A> iterable,
@NotNull
kotlin.jvm.functions.Function1<? super A,kotlin.Unit> callback)
@NotNull
public <A,B> java.util.List<B> poolMap(int threads,
@NotNull
java.lang.String name,
@NotNull
java.lang.Iterable<? extends A> iterable,
@NotNull
kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope,? super A,? extends B> mapper)
public <A> void poolEach(int threads,
@NotNull
java.lang.String name,
@NotNull
java.lang.Iterable<? extends A> iterable,
@NotNull
kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope,? super A,kotlin.Unit> callback)