is there a simple way to go through a range in par...
# announcements
t
is there a simple way to go through a range in parallel ?
i currently have
Copy code
IntStream.of(*(0..10).toList().toIntArray()).parallel().forEach {

}
which seems a bit silly
Copy code
(0..10).toList().parallelStream().forEach {

}
is also a bit clunky