without Class Or Interface Named
fun <T : KoClassAndInterfaceProvider> List<T>.withoutClassOrInterfaceNamed(name: String, vararg names: String, includeNested: Boolean = true, includeLocal: Boolean = true): List<T>
List containing declarations without any of specified classes and interfaces.
Return
A list containing declarations without any of specified classes and interfaces.
Parameters
name
The name of the class or interface to exclude.
names
The names of additional classes and interfaces to exclude.
include Nested
Whether to include nested classes and interfaces.
include Local
Whether to include local classes.
fun <T : KoClassAndInterfaceProvider> List<T>.withoutClassOrInterfaceNamed(names: Collection<String>, includeNested: Boolean = true, includeLocal: Boolean = true): List<T>
List containing declarations without any of specified classes and interfaces.
Return
A list containing declarations without any of specified classes and interfaces.
Parameters
names
The names of additional classes and interfaces to exclude.
include Nested
Whether to include nested classes and interfaces.
include Local
Whether to include local classes.