without All Type Arguments Named
fun <T : KoTypeArgumentProvider> List<T>.withoutAllTypeArgumentsNamed(name: String, vararg names: String): List<T>
List containing declarations without all specified type arguments.
Return
A list containing declarations without all specified type argument(s).
Parameters
name
The name of the type argument to exclude.
names
The name(s) of the type argument(s) to exclude.
fun <T : KoTypeArgumentProvider> List<T>.withoutAllTypeArgumentsNamed(names: Collection<String>): List<T>
List containing declarations without all specified type arguments.
Return
A list containing declarations without all specified type argument(s).
Parameters
names
The name(s) of the type argument(s) to exclude.