We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8da2124 commit 0d860b2Copy full SHA for 0d860b2
kotlinx-coroutines-core/common/src/flow/terminal/Reduce.kt
@@ -125,7 +125,7 @@ public suspend fun <T> Flow<T>.first(predicate: suspend (T) -> Boolean): T {
125
* The terminal operator that returns the first element emitted by the flow and then cancels flow's collection.
126
* Returns [null] if the flow was empty.
127
*/
128
-public suspend fun <T> Flow<T>.firstOrNull(): T? {
+public suspend fun <T : Any> Flow<T>.firstOrNull(): T? {
129
var result: Any? = NULL
130
try {
131
collect { value ->
0 commit comments