Java 8's parallelStream() is probably a good fit. ...
# coroutines
m
Java 8's parallelStream() is probably a good fit.
someList.toStream().parallel().map { it.calculateDigitsOfPi() }
etc