Breadth First
Taking the tree as example, the resulting sequence contains the result in a breath first manner, i.e. if dropRoots = false
then the elements of the original sequence are returned first (if dropRoots] = true
then they are skipped/dropped), then the children of those elements, then the children of the children and so on.
Since
1.1.0