with All Annotations Of
fun <T : KoAnnotationProvider> List<T>.withAllAnnotationsOf(kClass: KClass<*>, vararg kClasses: KClass<*>): List<T>
List containing declarations that have all annotations of the specified KClass
type.
Return
A list containing declarations that have all annotations of the specified KClass
type.
Parameters
k Class
The Kotlin class representing annotation to include.
k Classes
The Kotlin classes representing annotations to include.
fun <T : KoAnnotationProvider> List<T>.withAllAnnotationsOf(kClasses: Collection<KClass<*>>): List<T>
List containing declarations that have all annotations of the specified KClass
type.
Return
A list containing declarations that have all annotations of the specified KClass
type.
Parameters
k Classes
The Kotlin classes representing annotations to include.