withoutClassOrInterfaceOrObject

fun <T : KoClassAndInterfaceAndObjectProvider> List<T>.withoutClassOrInterfaceOrObject(    includeNested: Boolean = true,     includeLocal: Boolean = true,     predicate: (KoClassAndInterfaceAndObjectDeclaration) -> Boolean): List<T>

List containing declarations that not have class, interface or object satisfying the provided predicate.

Return

A list containing declarations without class, interface or object satisfying the provided predicate.

Parameters

includeNested

Whether to include nested classes, interfaces and objects.

includeLocal

Whether to include local classes.

predicate

A function that defines the condition to be met by a class, interface or object declaration.