KeySequence

An enumerable sequence representing the sub-keys of a registry Key.

Members

Functions

getKey
Key getKey(size_t index)

The key at the given index.

opApply
int opApply(int delegate(ref Key key) dg)
opIndex
Key opIndex(size_t index)

The key at the given index.

Properties

count
size_t count [@property getter]

The number of keys.

Examples

Key key = ...
foreach (Key subkey; key.keys)
{
    // using subkey
}

Meta