Ejemplo n.º 1
0
        private List <TValue> values;          // Payload.

        internal Leaf(int newOrder)
            : base(newOrder)
        {
            values    = new List <TValue>(newOrder - 1);
            rightLeaf = null;
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Move the enumerator back to its initial location.
 /// </summary>
 public void Reset()
 {
     leafIndex   = -1;
     currentLeaf = target.GetFirstLeaf();
 }