without Function
fun <T : KoFunctionProvider> List<T>.withoutFunction(includeNested: Boolean = true, includeLocal: Boolean = true, predicate: (KoFunctionDeclaration) -> Boolean): List<T>
List containing declarations that not have function satisfying the provided predicate.
Return
A list containing declarations without function satisfying the provided predicate.
Parameters
include Nested
Whether to include nested functions.
include Local
Whether to include local functions.
predicate
A function that defines the condition to be met by a function declaration.