clear method

dynamic clear()

Removes all items from the tree.

Implementation

clear() {
  data = _RBushNode<T>([]);
}