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