[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

An extended set that uses a tree-based backing store. As such, the set is always sorted.

Namespace: net.esper.compat
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Class ETreeSet(Of T) _
	Inherits TreeSet(Of T) _
	Implements ISet(Of T), ICollection(Of T), IEnumerable(Of T), IEnumerable
C#
public class ETreeSet<T> : TreeSet<T>, ISet<T>, ICollection<T>, IEnumerable<T>, IEnumerable
Visual C++
generic<typename T>
public ref class ETreeSet : public TreeSet<T>, ISet<T>, ICollection<T>, IEnumerable<T>, IEnumerable

Type Parameters

T

Inheritance Hierarchy

System.Object
  EnumerableBase<T>
    CollectionValueBase<T>
      CollectionBase<T>
        DirectedCollectionBase<T>
          SequencedBase<T>
            TreeSet<T>
              net.esper.compat.ETreeSet<(Of T>)