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