[][src]Module broccoli::collections

Container trees that deref to Tree

Most of the time using Tree is enough. But in certain cases we want more control. This module provides TreeRef and TreeRefInd

Structs

CollidingPairs

CollidingPairs created via TreeRefInd::collect_colliding_pairs

CollidingPairsPar

CollidingPairsPar created via TreeRefInd::collect_colliding_pairs_par All colliding pairs partitioned into mutually exclusive sets so that they can be traversed in parallel

FilteredElements

Contains a filtered list of all elements in the tree from calling TreeRefInd::collect_all.

TreeOwned

An owned version of TreeRef

TreeOwnedInd

An owned version of TreeRefInd

TreeRef

Provides a function to allow the user to ger the original slice of elements (sorted by the tree). Derefs to Tree.

TreeRefInd

A less general tree that providess collect functions and also derefs to a Tree.