コード例 #1
0
 internal SkipListItem32(ArrayBasedAllocator32 allocator, int nodeLocation)
 {
     _allocator    = allocator;
     _nodeLocation = nodeLocation;
 }
コード例 #2
0
ファイル: SkipList32.cs プロジェクト: zsybupt/TrimDB
 public SkipList32(ArrayBasedAllocator32 allocator) => _allocator = allocator;
コード例 #3
0
 internal SkipListEnumerator32(ArrayBasedAllocator32 allocator)
 {
     _allocator       = allocator;
     _currentLocation = _allocator.HeadNode.Location;
 }