with Parameter Types
fun <T : KoFunctionTypeDeclarationProvider> List<T>.withParameterTypes(predicate: (List<KoParameterDeclaration>) -> Boolean): List<T>
Deprecated
Will be removed in version 0.19.0
Replace with
withParameters(predicate)
Content copied to clipboard
Filters the list by parameter types as a collection using the given predicate.
Return
A list of function declarations that 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.