without Enum Constant Named
fun <T : KoEnumConstantProvider> List<T>.withoutEnumConstantNamed(name: String, vararg names: String): List<T>
List containing declarations without any of specified enum constants.
Return
A list containing declarations without any of specified enum constants.
Parameters
name
The name of the enum constant to exclude.
names
The names of additional enum constants to exclude.
fun <T : KoEnumConstantProvider> List<T>.withoutEnumConstantNamed(names: Collection<String>): List<T>
List containing declarations without any of specified enum constants.
Return
A list containing declarations without any of specified enum constants.
Parameters
names
The names of additional enum constants to exclude.