without All Parameter Types
fun <T : KoFunctionTypeDeclarationProvider> List<T>.withoutAllParameterTypes(predicate: (KoParameterDeclaration) -> Boolean): List<T>
Deprecated
Will be removed in version 0.19.0
Replace with
withoutAllParameters(predicate)
Content copied to clipboard
Filters the list by excluding functions where all parameter types match the given predicate.
Return
A list of function declarations where not all parameter types match the given predicate.
Parameters
predicate
A function that defines the condition to be met by all parameter types.