public readonly bool Equals(DynamicTree <T> other) { return(_tree == other._tree); }
public readonly int CompareTo(DynamicTree <T> other) { return(_tree == other._tree ? 0 : _tree < other._tree ? -1 : 1); }