withoutAllParentsNamed

fun <T : KoParentProvider> List<T>.withoutAllParentsNamed(name: String, vararg names: String, indirectParents: Boolean = false): List<T>

List containing declarations without all specified parents.

Return

A list containing declarations without all specified parent(s).

Parameters

name

The name of the parent to exclude.

names

The name(s) of the parent(s) to exclude.

indirectParents

Whether to include indirect parents.


fun <T : KoParentProvider> List<T>.withoutAllParentsNamed(names: Collection<String>, indirectParents: Boolean = false): List<T>

List containing declarations without all specified parents.

Return

A list containing declarations without all specified parent(s).

Parameters

names

The name(s) of the parent(s) to exclude.

indirectParents

Whether to include indirect parents.