withoutInterfaceNamed
fun <T : KoInterfaceProvider> List<T>.withoutInterfaceNamed(name: String, vararg names: String, includeNested: Boolean = true): List<T>
List containing declarations without any of specified interfaces.
Return
A list containing declarations without any of specified interfaces.
Parameters
name
The name of the interface to exclude.
names
The names of additional interfaces to exclude.
includeNested
Whether to include nested interfaces.
fun <T : KoInterfaceProvider> List<T>.withoutInterfaceNamed(names: Collection<String>, includeNested: Boolean = true): List<T>
List containing declarations without any of specified interfaces.
Return
A list containing declarations without any of specified interfaces.
Parameters
names
The names of additional interfaces to exclude.
includeNested
Whether to include nested interfaces.