Class OrderStatisticTree<T extends Comparable<? super T>>

java.lang.Object
tools.refinery.store.query.utils.OrderStatisticTree<T>
Type Parameters:
T - the actual element type.
All Implemented Interfaces:
Iterable<T>, Collection<T>, Set<T>

public class OrderStatisticTree<T extends Comparable<? super T>> extends Object implements Set<T>
This class implements an order statistic tree which is based on AVL-trees.

This class was copied into Refinery from https://github.com/coderodde/OrderStatisticTree and is available under the MIT License. We also incorporated changes by Eugene Schava and cleaned up some linter warnings.