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