withAllParameters
fun <T : KoFunctionTypeDeclarationProvider> List<T>.withAllParameters(predicate: (KoParameterDeclaration) -> Boolean): List<T>
Filters the list by requiring that all parameters match the given predicate.
Return
A list of function declarations where 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>.withAllParameters(predicate: (KoParameterDeclaration) -> Boolean): List<T>
List containing declarations that have all parameters satisfying the provided predicate.
Return
A filtered list containing declarations with all parameters satisfying the predicate.
Parameters
predicate
A function that defines the condition to be met by all parameter declarations.