withClassOrObject
fun <T : KoClassAndObjectProvider> List<T>.withClassOrObject( includeNested: Boolean = true, includeLocal: Boolean = true, predicate: (KoClassAndObjectDeclaration) -> Boolean): List<T>
List containing declarations that have at least one class or object satisfying the provided predicate.
Return
A list containing declarations with at least one class or object satisfying the predicate.
Parameters
includeNested
Whether to include nested classes and objects.
includeLocal
Whether to include local classes.
predicate
A function that defines the condition to be met by a class or object declaration.