without All Parent Interfaces Named
fun <T : KoParentInterfaceProvider> List<T>.withoutAllParentInterfacesNamed(name: String, vararg names: String, indirectParents: Boolean = false): List<T>
List containing declarations without all specified parent interfaces.
Return
A list containing declarations without all specified parent interface(s).
Parameters
name
The name of the parent interface to exclude.
names
The name(s) of the parent interface(s) to exclude.
indirect Parents
Whether to include indirect parent interfaces.
fun <T : KoParentInterfaceProvider> List<T>.withoutAllParentInterfacesNamed(names: Collection<String>, indirectParents: Boolean = false): List<T>
List containing declarations without all specified parent interfaces.
Return
A list containing declarations without all specified parent interface(s).
Parameters
names
The name(s) of the parent interface(s) to exclude.
indirect Parents
Whether to include indirect parent interfaces.