withoutPropertyNamed

fun <T : KoPropertyProvider> List<T>.withoutPropertyNamed(name: String, vararg names: String, includeNested: Boolean = true): List<T>

List containing declarations without any of specified properties.

Return

A list containing declarations without any of specified properties.

Parameters

name

The name of the property to exclude.

names

The names of additional properties to exclude.

includeNested

Whether to include nested properties.


fun <T : KoPropertyProvider> List<T>.withoutPropertyNamed(names: Collection<String>, includeNested: Boolean = true): List<T>

List containing declarations without any of specified properties.

Return

A list containing declarations without any of specified properties.

Parameters

names

The names of additional properties to exclude.

includeNested

Whether to include nested properties.