without Class Or Interface Or Object Declaration Of
fun <T : KoDeclarationCastProvider> List<T>.withoutClassOrInterfaceOrObjectDeclarationOf(kClass: KClass<*>, vararg kClasses: KClass<*>): List<T>
List containing declarations without class, interface or object declaration of.
Return
A list containing declarations without class, interface or object declaration of the specified Kotlin class(es).
Parameters
k Class
The Kotlin class representing the class, interface or object declaration to exclude.
k Classes
The Kotlin class(es) representing the class, interface or object declaration(s) to exclude.
fun <T : KoDeclarationCastProvider> List<T>.withoutClassOrInterfaceOrObjectDeclarationOf(kClasses: Collection<KClass<*>>): List<T>
List containing declarations without class, interface or object declaration of.
Return
A list containing declarations without class, interface or object declaration of the specified Kotlin class(es).
Parameters
k Classes
The Kotlin class(es) representing the class, interface or object declaration(s) to exclude.