Example #1
0
 public GenericBinaryTreeCollection(bool sorted)
 {
     this.thisGenericTree = new GenericTreeTable <V>(sorted)
     {
         Tag = this
     };
 }
Example #2
0
 protected virtual void Dispose(bool isDisposing)
 {
     if (isDisposing)
     {
         this.thisGenericTree.Dispose();
         this.thisGenericTree = null;
     }
 }
Example #3
0
 public GenericBinaryTreeCollection(GenericTreeTable <V> genericTree)
 {
     this.thisGenericTree     = genericTree;
     this.thisGenericTree.Tag = this;
 }
Example #4
0
 public GenericTreeTableEntry(GenericTreeTable <V> tree, V value)
 {
     thisValue = value;
     Tree      = tree.InternalTree;
 }