traits and class protection

2011-05-01 Thread Adam D. Ruppe
Is there a way in today's D to exclude members marked private and protected from processing in the __traits(allMembers) family of functions? I thought if I at least put it in a separate module, trying to get a private member would fail to compile, but I tried it and it seems to work anyway... my p

Re: traits and class protection

2011-05-03 Thread Lutger Blijdestijn
Adam D. Ruppe wrote: > Is there a way in today's D to exclude members marked private and > protected from processing in the __traits(allMembers) family of > functions? > > I thought if I at least put it in a separate module, trying to get > a private member would fail to compile, but I tried it