Constructor TreeDictionary
TreeDictionary(MemoryType)
Create a red-black tree dictionary using the natural comparer for keys.
Declaration
public TreeDictionary(MemoryType memoryType = MemoryType.Normal)
Parameters
Type | Name | Description |
---|---|---|
MemoryType | memoryType |
TreeDictionary(Collections.Generic.IComparer<K>, MemoryType)
Create a red-black tree dictionary using an external comparer for keys.
Declaration
public TreeDictionary(Collections.Generic.IComparer<K> comparer, MemoryType memoryType = MemoryType.Normal)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IComparer<K> | comparer | The external comparer |
MemoryType | memoryType |