Пример #1
0
 internal SkipListItem64(SkipListAllocator64 allocator, long nodeLocation)
 {
     _allocator    = allocator;
     _nodeLocation = nodeLocation;
 }
Пример #2
0
 public SkipList64(SkipListAllocator64 allocator) => _allocator = allocator;
Пример #3
0
 internal SkipListEnumerator64(SkipListAllocator64 allocator)
 {
     _allocator       = allocator;
     _currentLocation = _allocator.HeadNode.Location;
 }