Clear all sets in the forest. All `Set` instances belong to this forest are invalidated and should no longer be used.
(&mut self)
| 53 | /// |
| 54 | /// All `Set` instances belong to this forest are invalidated and should no longer be used. |
| 55 | pub fn clear(&mut self) { |
| 56 | self.nodes.clear(); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | /// B-tree representing an ordered set of `K`s using `C` for comparing elements. |