without All Objects Named
fun <T : KoObjectProvider> List<T>.withoutAllObjectsNamed(name: String, vararg names: String, includeNested: Boolean = true): List<T>
List containing declarations without all specified objects.
Return
A list containing declarations without all specified object(s).
Parameters
name
The name of the object to exclude.
names
The name(s) of the object(s) to exclude.
include Nested
Whether to include nested objects.
fun <T : KoObjectProvider> List<T>.withoutAllObjectsNamed(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.