Solutions
Multiplatform
Server-side
Data science
Android
Docs
API
APIs overview
Standard library (stdlib)
Test library (kotlin.test)
Coroutines (kotlinx.coroutines)
Serialization (kotlinx.serialization)
Kotlin I/O library (kotlinx-io)
Date and time (kotlinx-datetime)
JVM Metadata (kotlin-metadata-jvm)
Kotlin Gradle plugins
Ktor
Community
Teach
Play
Playground
Koans
kotlinx.coroutines
Toggle table of contents
1.10.2
common
Platform filter
common
Switch theme
Search in API
kotlinx.coroutines
kotlinx-coroutines-core
/
kotlinx.coroutines.flow
/
dropWhile
drop
While
fun
<
T
>
Flow
<
T
>
.
dropWhile
(
predicate
:
suspend
(
T
)
->
Boolean
)
:
Flow
<
T
>
(
source
)
Returns a flow containing all elements except first elements that satisfy the given predicate.