withInterface

fun withInterface(target: KClass<*>, filter: ClassInfo.() -> Boolean = { true }): Sequence<ClassInfo>

Return

A Sequence of all the classes that implement the given interface.

Parameters

target

The target interface.

filter

A filter to refine the resulting set.


inline fun <T : Any> withInterface(noinline filter: ClassInfo.() -> Boolean = { true }): Sequence<ClassInfo>

Return

A Sequence of all the classes that implement the given interface.

Parameters

T

The reified type of the interface.

filter

A filter to refine the resulting set.