Beispiel #1
0
 internal SkipListItem32(NativeAllocator32 allocator, int nodeLocation)
 {
     _allocator    = allocator;
     _nodeLocation = nodeLocation;
 }
Beispiel #2
0
 public SkipList32(NativeAllocator32 allocator) => _allocator = allocator;
Beispiel #3
0
 internal SkipListEnumerator32(NativeAllocator32 allocator)
 {
     _allocator       = allocator;
     _currentLocation = _allocator.HeadNode.Location;
 }