with Parent Interface Named
fun <T : KoParentInterfaceProvider> List<T>.withParentInterfaceNamed(name: String, vararg names: String, indirectParents: Boolean = false): List<T>
List containing declarations that have at least one parent interface with the specified name(s).
Return
A list containing declarations with at least one of the specified parent interface(s).
Parameters
name
The name of the parent interface to include.
names
The names of additional parent interfaces to include.
indirect Parents
Whether to include indirect parent interfaces.
fun <T : KoParentInterfaceProvider> List<T>.withParentInterfaceNamed(names: Collection<String>, indirectParents: Boolean = false): List<T>
List containing declarations that have at least one parent interface with the specified name(s).
Return
A list containing declarations with at least one of the specified parent interface(s).
Parameters
names
The names of additional parent interfaces to include.
indirect Parents
Whether to include indirect parent interfaces.