Пример #1
0
 public InteriorNode(IGistConfig <TKey, TValue> config, IGistIndexRecords <TKey> records)
     : base(config, null)
 {
     Records        = records;
     Block          = config.Blocks.AllocateBlock(GetBytes());
     Block.UserData = this;
 }
Пример #2
0
 public InteriorNode(IGistConfig <TKey, TValue> config, IBlock block, IGistIndexRecords <TKey> records)
     : base(config, block)
 {
     Records = records;
 }