API:System.Generics.Collections.TObjectDictionary.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(Ownerships: TDictionaryOwnerships; ACapacity: Integer = 0); overload;
constructor Create(Ownerships: TDictionaryOwnerships;  const AComparer: IEqualityComparer<TKey>); overload;
constructor Create(Ownerships: TDictionaryOwnerships; ACapacity: Integer;  const AComparer: IEqualityComparer<TKey>); overload;

C++

__fastcall TObjectDictionary__2(TDictionaryOwnerships Ownerships, int ACapacity)/* overload */;
__fastcall TObjectDictionary__2(TDictionaryOwnerships Ownerships, const System::DelphiInterface<System::Generics::Defaults::IEqualityComparer__1<TKey> > AComparer)/* overload */;
__fastcall TObjectDictionary__2(TDictionaryOwnerships Ownerships, int ACapacity, const System::DelphiInterface<System::Generics::Defaults::IEqualityComparer__1<TKey> > AComparer)/* overload */;
/* {System_Generics_Collections}TDictionary<System_Generics_Collections_TObjectDictionary<TKey,TValue>_TKey,System_Generics_Collections_TObjectDictionary<TKey,TValue>_TValue>.Create */ inline __fastcall TObjectDictionary__2()/* overload */ : TDictionary__2<TKey,TValue>() { }
/* {System_Generics_Collections}TDictionary<System_Generics_Collections_TObjectDictionary<TKey,TValue>_TKey,System_Generics_Collections_TObjectDictionary<TKey,TValue>_TValue>.Create */ inline __fastcall TObjectDictionary__2(int ACapacity)/* overload */ : TDictionary__2<TKey,TValue>(ACapacity) { }
/* {System_Generics_Collections}TDictionary<System_Generics_Collections_TObjectDictionary<TKey,TValue>_TKey,System_Generics_Collections_TObjectDictionary<TKey,TValue>_TValue>.Create */ inline __fastcall TObjectDictionary__2(const System::DelphiInterface<System::Generics::Defaults::IEqualityComparer__1<TKey> > AComparer)/* overload */ : TDictionary__2<TKey,TValue>(AComparer) { }
/* {System_Generics_Collections}TDictionary<System_Generics_Collections_TObjectDictionary<TKey,TValue>_TKey,System_Generics_Collections_TObjectDictionary<TKey,TValue>_TValue>.Create */ inline __fastcall TObjectDictionary__2(int ACapacity, const System::DelphiInterface<System::Generics::Defaults::IEqualityComparer__1<TKey> > AComparer)/* overload */ : TDictionary__2<TKey,TValue>(ACapacity, AComparer) { }
/* {System_Generics_Collections}TDictionary<System_Generics_Collections_TObjectDictionary<TKey,TValue>_TKey,System_Generics_Collections_TObjectDictionary<TKey,TValue>_TValue>.Create */ inline __fastcall TObjectDictionary__2(TEnumerable__1<TPair__2<TKey,TValue> >* const Collection)/* overload */ : TDictionary__2<TKey,TValue>(Collection) { }
/* {System_Generics_Collections}TDictionary<System_Generics_Collections_TObjectDictionary<TKey,TValue>_TKey,System_Generics_Collections_TObjectDictionary<TKey,TValue>_TValue>.Create */ inline __fastcall TObjectDictionary__2(TEnumerable__1<TPair__2<TKey,TValue> >* const Collection, const System::DelphiInterface<System::Generics::Defaults::IEqualityComparer__1<TKey> > AComparer)/* overload */ : TDictionary__2<TKey,TValue>(Collection, AComparer) { }

Properties

Type Visibility Source Unit Parent
constructor public
System.Generics.Collections.pas
System.Generics.Collections.hpp
System.Generics.Collections TObjectDictionary

Description

Create dictionary.

System.Generics.Collections.TObjectDictionary.Create inherits from System.Generics.Collections.TDictionary.Create. All content below this line refers to System.Generics.Collections.TDictionary.Create.

Create dictionary.

This overloaded method creates and initializes a dictionary instance. Various combinations of parameters may be used to specify the initial capacity ACapacity, an equality comparison function AComparer, or an initial collection of key-value items Collection.

See Also