W3cubDocs

/Kotlin

filterIsInstanceTo

inline fun <reified R, C : MutableCollection<in R>> Sequence<*>.filterIsInstanceTo(
    destination: C
): C

Appends all elements that are instances of specified type parameter R to the given destination.

The operation is terminal.

fun <C : MutableCollection<in R>, R> Sequence<*>.filterIsInstanceTo(
    destination: C, 
    klass: Class<R>
): C

Platform and version requirements: JVM

Appends all elements that are instances of specified class to the given destination.

The operation is terminal.

© 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-to.html