Lazy

this parser is needed to build recursive parser hierarchies. look for expression.d for a more realistic example than in the unittest

class Lazy : Parser!(T)(
T
) {
Parser!(T) delegate() fCallable;
}

Meta