links to nested structure

Adam Ruppe destructionator at gmail.com
Wed Aug 24 11:07:03 PDT 2011


Yeah, it should work with any level of nesting.

If toPrettyChars() doesn't work out, my parent
plan is actually more like:

auto item = this.parent;
while(item) {
 str ~= "." ~ item.toChars();
 item = this.parent;
}

so it'd go any level needed.


More information about the Digitalmars-d-learn mailing list