Ejemplo n.º 1
0
 internal AddableArray(AddableArray <T> listArray)
 {
     this._list = new T[listArray._list.Length];
     for (int i = 0; i < this._list.Length; i++)
     {
         this._list[i] = listArray._list[i];
     }
     this._equate = listArray._equate;
     this._count  = listArray._count;
 }
Ejemplo n.º 2
0
 /// <summary>Constructs a Order_ListArray.</summary>
 /// <param name="compare">The soring technique used by this data structure.</param>
 public OrderListArray(Compare <T> compare)
 {
     this._compare = compare;
     this._list    = new AddableArray <T>();
 }
Ejemplo n.º 3
0
 /// <summary>Constructs a Order_ListArray.</summary>
 public OrderListArray()
 {
     this._compare = Towel.Compare.Default;
     this._list    = new AddableArray <T>();
 }