withAnnotation

fun withAnnotation(annotation: KClass<out Annotation>, filter: ClassInfo.() -> Boolean = { true }): List<ClassInfo>

Return

A Sequence of all the classes that are annotated with the given annotation.

Parameters

annotation

The target annotation class.

filter

A filter to refine the resulting set.


inline fun <T : Annotation> withAnnotation(noinline filter: ClassInfo.() -> Boolean = { true }): List<ClassInfo>

Return

A Sequence of all the classes that are annotated with the given annotation.

Parameters

T

The reified type of the annotation.

filter

A filter to refine the resulting set.