OrderedSet

Description

sealed class Tinman.Core.Collections.OrderedSet<T>

Derived from

BagBase<T> abstract
IVector<T>
IArrayVector<T>

A IBag implementation with set semantics that retains the order in which elements have been added.

Public / Constructors

Ordered​Set

3 overloads


public constructor OrderedSet1 → (1)

capacity opt : int32 = 12

[>=0]
The initial capacity of the list set, in elements.

Creates a new instance of OrderedSet.

The equality delegate is SystemUtilGeneric.EqualsDefault.
The hash code delegate is SystemUtilGeneric.HashCodeDefault.


public constructor OrderedSet2 → (2)

equals in : EqualsDelegate<T>

Optional equality comparer. If null, SystemUtilGeneric.EqualsDefault will be used.

capacity opt : int32 = 12

[>=0]
The initial capacity of the ordered set, in elements.

Creates a new instance of OrderedSet.

The hash code delegate is SystemUtilGeneric.HashCodeDefault.


public constructor OrderedSet3 → (3)

equals in : EqualsDelegate<T>

Optional equality comparer. If null, SystemUtilGeneric.EqualsDefault will be used.

hashCode in : HashCodeDelegate<T>

Optional hash code delegate. If null, SystemUtilGeneric.HashCodeDefault will be used.

capacity opt : int32 = 12

[>=0]
The initial capacity of the ordered set, in elements.

Creates a new instance of OrderedSet.