without All Interfaces And Objects Named
fun <T : KoInterfaceAndObjectProvider> List<T>.withoutAllInterfacesAndObjectsNamed(name: String, vararg names: String, includeNested: Boolean = true): List<T>
List containing declarations without all specified interfaces and objects.
Return
A list containing declarations without all specified interface(s) and object(s).
Parameters
name
The name of the interface or object to exclude.
names
The name(s) of the interface(s) and object(s) to exclude.
include Nested
Whether to include nested interfaces and objects.
fun <T : KoInterfaceAndObjectProvider> List<T>.withoutAllInterfacesAndObjectsNamed(names: Collection<String>, includeNested: Boolean = true): List<T>
List containing declarations without all specified interfaces and objects.
Return
A list containing declarations without all specified interface(s) and object(s).
Parameters
names
The name(s) of the interface(s) and object(s) to exclude.
include Nested
Whether to include nested interfaces and objects.