without Parameter Type
fun <T : KoFunctionTypeDeclarationProvider> List<T>.withoutParameterType(predicate: (KoParameterDeclaration) -> Boolean): List<T>
Deprecated
Will be removed in version 0.19.0
Replace with
withoutParameter(predicate)
Content copied to clipboard
Filters the list by excluding functions that match the parameter type predicate.
Return
A list of function declarations that do not match the predicate for the parameter type.
Parameters
predicate
A function that defines the condition to be met by the parameter type.