childrenOfTypeDepthFirst

inline fun <T : Tree> Tree.childrenOfTypeDepthFirst(): Sequence<T>(source)

Return

a sequence of child nodes of type T of this Tree in depth-first order. The sequence starts with the first child node of this Tree, followed by the first child node of the first child node, and so on.