withoutExternalTypeDeclarationOf
fun <T : KoDeclarationCastProvider> List<T>.withoutExternalTypeDeclarationOf(kClass: KClass<*>, vararg kClasses: KClass<*>): List<T>
Deprecated
Will be removed in version 0.19.0
Replace with
withoutExternalDeclarationOf
Content copied to clipboard
List containing declarations without external declaration of.
Return
A list containing declarations without external declaration of the specified Kotlin class(es).
Parameters
kClass
The Kotlin class representing the external declaration to exclude.
kClasses
The Kotlin class(es) representing the external declaration(s) to exclude.
fun <T : KoDeclarationCastProvider> List<T>.withoutExternalTypeDeclarationOf(kClasses: Collection<KClass<*>>): List<T>
Deprecated
Will be removed in version 0.19.0
Replace with
withoutExternalDeclarationOf
Content copied to clipboard
List containing declarations without external declaration of.
Return
A list containing declarations without external declaration of the specified Kotlin class(es).
Parameters
kClasses
The Kotlin class(es) representing the external declaration(s) to exclude.