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