withoutInterfaceDeclarationOf
fun <T : KoDeclarationCastProvider> List<T>.withoutInterfaceDeclarationOf(kClass: KClass<*>, vararg kClasses: KClass<*>): List<T>
List containing declarations without interface declaration of.
Return
A list containing declarations without interface declaration of the specified Kotlin class(es).
Parameters
kClass
The Kotlin class representing the interface declaration to exclude.
kClasses
The Kotlin class(es) representing the interface declaration(s) to exclude.
fun <T : KoDeclarationCastProvider> List<T>.withoutInterfaceDeclarationOf(kClasses: Collection<KClass<*>>): List<T>
List containing declarations without interface declaration of.
Return
A list containing declarations without interface declaration of the specified Kotlin class(es).
Parameters
kClasses
The Kotlin class(es) representing the interface declaration(s) to exclude.