filterIsInstance

Common
JVM
JS
Native
1.0
fun <reified R> Sequence<*>.filterIsInstance(): Sequence<R>

Returns a sequence containing all elements that are instances of specified type parameter R.

The operation is intermediate and stateless.

JVM
1.0
fun <R> Sequence<*>.filterIsInstance(
    klass: Class<R>
): Sequence<R>

Returns a sequence containing all elements that are instances of specified class.

The operation is intermediate and stateless.