internal SkipListItem32(ArrayBasedAllocator32 allocator, int nodeLocation) { _allocator = allocator; _nodeLocation = nodeLocation; }
public SkipList32(ArrayBasedAllocator32 allocator) => _allocator = allocator;
internal SkipListEnumerator32(ArrayBasedAllocator32 allocator) { _allocator = allocator; _currentLocation = _allocator.HeadNode.Location; }