without All Parameters Named
fun <T : KoParametersProvider> List<T>.withoutAllParametersNamed(name: String, vararg names: String): List<T>
List containing declarations without all specified parameters.
Return
A list containing declarations without all specified parameter(s).
Parameters
name
The name of the parameter to exclude.
names
The name(s) of the parameter(s) to exclude.
fun <T : KoParametersProvider> List<T>.withoutAllParametersNamed(names: Collection<String>): List<T>
List containing declarations without all specified parameters.
Return
A list containing declarations without all specified parameter(s).
Parameters
names
The name(s) of the parameter(s) to exclude.