withoutAllClassesAndInterfacesNamed

fun <T : KoClassAndInterfaceProvider> List<T>.withoutAllClassesAndInterfacesNamed(name: String, vararg names: String, includeNested: Boolean = true, includeLocal: Boolean = true): List<T>

List containing declarations without all specified classes and interfaces.

Return

A list containing declarations without all specified class(es) and interface(s).

Parameters

name

The name of the class or interface to exclude.

names

The name(s) of the class(es) and interface(s) to exclude.

includeNested

Whether to include nested classes and interfaces.

includeLocal

Whether to include local classes.


fun <T : KoClassAndInterfaceProvider> List<T>.withoutAllClassesAndInterfacesNamed(names: Collection<String>, includeNested: Boolean = true, includeLocal: Boolean = true): List<T>

List containing declarations without all specified classes and interfaces.

Return

A list containing declarations without all specified class(es) and interface(s).

Parameters

names

The name(s) of the class(es) and interface(s) to exclude.

includeNested

Whether to include nested classes and interfaces.

includeLocal

Whether to include local classes.