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