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