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