Searched defs:joinAll (Results 1 – 3 of 3) sorted by relevance
55 public suspend fun joinAll(vararg jobs: Job): Unit = jobs.forEach { it.join() } in <lambda>() method67 public suspend fun Collection<Job>.joinAll(): Unit = forEach { it.join() } in <lambda>() method
65 suspend fun Iterable<Job>.joinAll() = forEach { it.join() } in <lambda>() method
243 public Comments joinAll(Comments other) { in joinAll() method in XPathParts.Comments