withoutAllPropertiesNamed

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

List containing declarations without all specified properties.

Return

A list containing declarations without all specified properties.

Parameters

name

The name of the property to exclude.

names

The name(s) of the properties to exclude.

includeNested

Whether to include nested properties.


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

List containing declarations without all specified properties.

Return

A list containing declarations without all specified properties.

Parameters

names

The name(s) of the properties to exclude.

includeNested

Whether to include nested properties.