without Object Named
fun <T : KoObjectProvider> List<T>.withoutObjectNamed(name: String, vararg names: String, includeNested: Boolean = true): List<T>
List containing declarations without any of specified objects.
Return
A list containing declarations without any of specified objects.
Parameters
name
The name of the object to exclude.
names
The names of additional objects to exclude.
include Nested
Whether to include nested objects.
fun <T : KoObjectProvider> List<T>.withoutObjectNamed(names: Collection<String>, includeNested: Boolean = true): List<T>
List containing declarations without any of specified objects.
Return
A list containing declarations without any of specified objects.
Parameters
names
The names of additional objects to exclude.
include Nested
Whether to include nested objects.