TOrderedObjectDictionary<K, V>.Create Constructor
Overloads
- TOrderedObjectDictionary<K, V>.Create
- TOrderedObjectDictionary<K, V>.Create(TDictionaryOwnerships)
- TOrderedObjectDictionary<K, V>.Create(TDictionaryOwnerships, )
TOrderedObjectDictionary<K, V>.Create
Creates a new ordered object dictionary that owns its values.
Syntax
Unit: Bcl.Collections
constructor TOrderedObjectDictionary<K, V>.Create;
See also
TOrderedObjectDictionary<K, V>.Create(TDictionaryOwnerships)
Creates a new ordered object dictionary with the specified ownership settings.
Syntax
Unit: Bcl.Collections
constructor TOrderedObjectDictionary<K, V>.Create(Ownerships: TDictionaryOwnerships);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| Ownerships | TDictionaryOwnerships | Specifies whether the dictionary owns its keys, values, or both. |
See also
TOrderedObjectDictionary<K, V>.Create(TDictionaryOwnerships, )
Creates a new ordered object dictionary with the specified ownership settings and key comparer.
Syntax
Unit: Bcl.Collections
constructor TOrderedObjectDictionary<K, V>.Create(Ownerships: TDictionaryOwnerships; const AComparer: );
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| Ownerships | TDictionaryOwnerships | Specifies whether the dictionary owns its keys, values, or both. | |
| const | AComparer | The equality comparer used for key lookups. |