childrenOfTypeBreadthFirst

inline fun <T : Node> Node.childrenOfTypeBreadthFirst(): Sequence<T>(source)

Return

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