without Annotation Of
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
k Class
The Kotlin class representing annotation to exclude.
k Classes
The Kotlin classes representing annotations to exclude.
fun <T : KoAnnotationProvider> List<T>.withoutAnnotationOf(kClasses: Collection<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
k Classes
The Kotlin classes representing annotations to exclude.