W3cubDocs

/Kotlin

filterIsInstance

Platform and version requirements: JVM (1.0), JS (1.0), 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.

Platform and version requirements: 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.

© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/filter-is-instance.html