W3cubDocs

/Kotlin

filterIsInstance

inline 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.

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

Platform and version requirements: JVM

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

The operation is intermediate and stateless.

© 2010–2018 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