Searched defs:filterIsInstance (Results 1 – 1 of 1) sorted by relevance
36 public inline fun <reified R> Flow<*>.filterIsInstance(): Flow<R> = filter { it is R } as Flow<R> in <lambda>() method41 public fun <R : Any> Flow<*>.filterIsInstance(klass: KClass<R>): Flow<R> = filter { klass.isInstanc… in <lambda>() method