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