The type of the sequential data structures which applyUntil operates on.
Atomically applies dg to some element of the Bag. Progress: Lock-free if there are no more than width total concurrent threads, otherwise deadlock-free.
Applies dg to elements in Bags which this Handle refers to during this call until dg returns true for the first time.
Attempts to merge the elements in this and other's Bags together.
Calls tryApplyEachUntil(dg) on the Bag this Handle references and returns the result.
Attempt to move this shared handle down the chain to skip over merged nodes.
Atomically loads a shared Handle.
GC allocates a new Node and returns a Handle to it.
Static factory method which uses Alloc to allocate a new Node and returns a Handle to it.
A handle to a Union-Find node, referencing a mergeable collection of type Bag.
A Handle is the outer interface of the MergeArray framework for building relaxed concurrent mergeable data structures. Such a data structure should wrap a Handle to a Bag type which manages access and merging of sequential data structures of type Bag.ElementType.