Provides a collection of all the nodes in the tree using a breadth-first preorder traversal. @return the list of (breadth-first) ordered nodes
()
| 668 | * @return the list of (breadth-first) ordered nodes |
| 669 | */ |
| 670 | public List breadthFirst() { |
| 671 | return breadthFirst(true); |
| 672 | } |
| 673 | |
| 674 | /** |
| 675 | * Provides a collection of all the nodes in the tree |
nothing calls this directly
no test coverage detected