without All External Parents Named
fun <T : KoExternalParentProvider> List<T>.withoutAllExternalParentsNamed(name: String, vararg names: String, indirectParents: Boolean = false): List<T>
List containing declarations without all specified external parents. The external parent is a parent defined outside the project codebase (defined inside external library).
Return
A list containing declarations without all specified external parent(s).
Parameters
name
The name of the external parent to exclude.
names
The name(s) of the external parent(s) to exclude.
indirect Parents
Whether to include indirect external parents.
fun <T : KoExternalParentProvider> List<T>.withoutAllExternalParentsNamed(names: Collection<String>, indirectParents: Boolean = false): List<T>
List containing declarations without all specified external parents. The external parent is a parent defined outside the project codebase (defined inside external library).
Return
A list containing declarations without all specified external parent(s).
Parameters
names
The name(s) of the external parent(s) to exclude.
indirect Parents
Whether to include indirect external parents.