hasAllClassesAndInterfaces

abstract fun hasAllClassesAndInterfaces(includeNested: Boolean = true, includeLocal: Boolean = true, predicate: (KoClassAndInterfaceDeclaration) -> Boolean): Boolean

Determines whether the declaration has all classes and interfaces that satisfy the provided predicate.

Note that if the classes and interfaces contains no elements, the function returns true because there are no elements in it that do not match the predicate.

Return

true if all class or interface declarations satisfy the predicate, false otherwise.

Parameters

includeNested

Specifies whether to include nested classes and interfaces in the check (optional, default is true).

includeLocal

Specifies whether to include local classes in the check (optional, default is true).

predicate

A function that defines the condition to be met by class or interface declarations.