without Parameter
fun <T : KoFunctionTypeDeclarationProvider> List<T>.withoutParameter(predicate: (KoParameterDeclaration) -> Boolean): List<T>
Filters the list by excluding functions that match the parameter predicate.
Return
A list of function declarations that do not match the predicate for the parameter.
Parameters
predicate
A function that defines the condition to be met by the parameter.
fun <T : KoParametersProvider> List<T>.withoutParameter(predicate: (KoParameterDeclaration) -> Boolean): List<T>
List containing declarations that not have parameter satisfying the provided predicate.
Return
A list containing declarations without parameter satisfying the provided predicate.
Parameters
predicate
A function that defines the condition to be met by a parameter declaration.