API:System.Generics.Collections.TDictionary

From RAD Studio API Documentation
Jump to: navigation, search

System.Generics.Collections.TEnumerableSystem.TObjectTDictionary

Delphi

TDictionary<TKey,TValue> = class(TEnumerable<TPair<TKey,TValue>>)

C++

template<typename TKey, typename TValue> class PASCALIMPLEMENTATION TDictionary__2 : public TEnumerable__1<TPair__2<TKey,TValue> >

Properties

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

Description

TEnumerable is an abstract class inherited by all enumerable containers.

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

TEnumerable is an abstract class inherited by all enumerable containers.

To give your container enumerating functionality, implement and extend the TEnumerable abstract class.

Implement the DoGetEnumerator protected method in order to obtain an instance of the container's enumerator.

See Also