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