withoutAnnotationOf

fun <T : KoAnnotationProvider> List<T>.withoutAnnotationOf(kClass: KClass<*>, vararg kClasses: KClass<*>): List<T>

List containing declarations without any annotation of the specified KClass type.

Return

A list containing declarations without any of the specified annotations.

Parameters

kClass

The Kotlin class representing annotation to exclude.

kClasses

The Kotlin classes representing annotations to exclude.


List containing declarations without any annotation of the specified KClass type.

Return

A list containing declarations without any of the specified annotations.

Parameters

kClasses

The Kotlin classes representing annotations to exclude.