without Parameters
fun <T : KoFunctionTypeDeclarationProvider> List<T>.withoutParameters(predicate: (List<KoParameterDeclaration>) -> Boolean): List<T>
Filters the list by excluding functions that match the parameters predicate as a collection.
Return
A list of function declarations that do not match the predicate for the list of parameters.
Parameters
predicate
A function that defines the condition to be met by the list of parameters.
List containing declarations with no parameters.
Return
A list containing declarations with no parameters.
fun <T : KoParametersProvider> List<T>.withoutParameters(predicate: (List<KoParameterDeclaration>) -> Boolean): List<T>
List containing declarations without parameter declarations satisfying the predicate.
Return
A list containing declarations without parameter declarations satisfying the predicate.
Parameters
predicate
A function that defines the condition to be met by the list of parameter declarations.