without Type Argument Named
fun <T : KoTypeArgumentProvider> List<T>.withoutTypeArgumentNamed(name: String, vararg names: String): List<T>
List containing declarations without any of specified type arguments.
Return
A list containing declarations without any of specified type arguments.
Parameters
name
The name of the type argument to exclude.
names
The names of additional type arguments to exclude.
fun <T : KoTypeArgumentProvider> List<T>.withoutTypeArgumentNamed(names: Collection<String>): List<T>
List containing declarations without any of specified type arguments.
Return
A list containing declarations without any of specified type arguments.
Parameters
names
The names of additional type arguments to exclude.