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