kotlinx.coroutines
1.6.4
common
kotlinx-coroutines-core
/
kotlinx.coroutines.flow
/
filter
filter
common
inline
fun
<
T
>
Flow
<
T
>
.
filter
(
crossinline
predicate
:
suspend
(
T
)
->
Boolean
)
:
Flow
<
T
>
Content copied to clipboard
Returns a flow containing only values of the original flow that match the given
predicate
.
Sources
common source
Link copied to clipboard