without All Parameters
fun <T : KoFunctionTypeDeclarationProvider> List<T>.withoutAllParameters(predicate: (KoParameterDeclaration) -> Boolean): List<T>
Filters the list by excluding functions where all parameters match the given predicate.
Return
A list of function declarations where not all parameters match the given predicate.
Parameters
predicate
A function that defines the condition to be met by all parameters.
fun <T : KoParametersProvider> List<T>.withoutAllParameters(predicate: (KoParameterDeclaration) -> Boolean): List<T>
List containing declarations that have at least one parameter not satisfying the provided predicate.
Return
A list containing declarations that have at least one parameter not satisfying the provided predicate.
Parameters
predicate
A function that defines the condition to be met by all parameter declarations.