Ejemplo n.º 1
0
 public InternalNode(int capacity)
 {
     Items = RingArray <KeyNodeItem> .NewFixedCapacityArray(capacity);
 }
Ejemplo n.º 2
0
 public LeafNode(int capacity)
 {
     Items = RingArray <KeyValueItem> .NewFixedCapacityArray(capacity);
 }