[]
Defines the kind of an index, the algorithm used by that index. Currently, the RedBlackTree algorithm is always used.
public abstract class IndexingAlgorithm
In the current version, only one algorithm is supported, RedBlackTree. Later versions may support other algorithms, such as bitmap or hash indexing.
Name | Description |
---|---|
RedBlackTree | The red-black tree algorithm, a type of self-balancing binary search tree widely used in computer science because it has good performance that does not significantly degrade even in worst cases. |
Name | Description |
---|---|
CreateIndex<T, TKey>(IObservableSource<T>, Expression<Func<T, TKey>>, bool, CultureInfo) | Creates a new index. |