withSuperclassKClass

fun <T : Any> withSuperclassKClass(superclass: KClass<T>, filter: ClassInfo.() -> Boolean = { true }): Sequence<KClass<T>>

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> withSuperclassKClass(noinline filter: ClassInfo.() -> Boolean = { true }): Sequence<KClass<T>>

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.