getNestedClasses

fun getNestedClasses(baseKClass: KClass<*>, curDepth: Int = 0, maxDepth: Int = 9): Flow<KClass<*>>

Returns a sequence of nested classes from the given class This includes the class itself.

Return

A flow of nested classes.

Parameters

baseKClass

The starting class.

curDepth

The current search depth.

maxDepth

The maximum search depth.