commonMain.flow.terminal.Collection.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core
Show all versions of kotlinx-coroutines-core
Coroutines support libraries for Kotlin
@file:JvmMultifileClass
@file:JvmName("FlowKt")
package kotlinx.coroutines.flow
import kotlin.jvm.*
/**
* Collects given flow into a [destination]
*/
public suspend fun Flow.toList(destination: MutableList = ArrayList()): List = toCollection(destination)
/**
* Collects given flow into a [destination]
*/
public suspend fun Flow.toSet(destination: MutableSet = LinkedHashSet()): Set = toCollection(destination)
/**
* Collects given flow into a [destination]
*/
public suspend fun > Flow.toCollection(destination: C): C {
collect { value ->
destination.add(value)
}
return destination
}