DUnitMethodIterator

Iterate through the methods of T generating code using the generator.

template DUnitMethodIterator (
T
string generator
int index = 0
) if (
is(T == class) ||
is(T == interface)
) {
enum DUnitMethodIterator;
}

Parameters

T

The class to inspect.

generator

The template to use to generate code for each method.

index

The beginning index of the members.

Meta