System.Generics.Collections.TDictionary.TKeyEnumerator

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TKeyEnumerator = class(TEnumerator<TKey>)

C++

class PASCALIMPLEMENTATION TKeyEnumerator : public TEnumerator__1<TKey>

Properties

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

Description

TDictionary.TKeyEnumerator is the enumerator class for the keys in the dictionary.

TDictionary.TKeyEnumerator is the class that implements enumerating functionality to the collection of keys in the dictionary.

MoveNext focuses on the next key in the collection. Also, Current stores the key that is currently focused.

See Also