withSuperclass
fun withSuperclass(superclass: KClass<*>, filter: ClassInfo.() -> Boolean = { true }): Sequence<ClassInfo>
Return
A Sequence of all the classes that are subclasses of the given superclass.
Parameters
superclass
The target superclass.
filter
A filter to refine the resulting set.
inline fun <T : Any> withSuperclass(noinline filter: ClassInfo.() -> Boolean = { true }): Sequence<ClassInfo>
Return
A Sequence of all the classes that are subclasses of the given superclass.
Parameters
T
The reified type of the superclass.
filter
A filter to refine the resulting set.