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