without All Type Aliases Named
fun <T : KoTypeAliasProvider> List<T>.withoutAllTypeAliasesNamed(name: String, vararg names: String): List<T>
List containing declarations without all specified type aliases.
Return
A list containing declarations without all specified type alias(s).
Parameters
name
The name of the type alias to exclude.
names
The name(s) of the type alias(s) to exclude.
fun <T : KoTypeAliasProvider> List<T>.withoutAllTypeAliasesNamed(names: Collection<String>): List<T>
List containing declarations without all specified type aliases.
Return
A list containing declarations without all specified type alias(s).
Parameters
names
The name(s) of the type alias(s) to exclude.