Re: some questions about D

2009-10-23 Thread Phil Deets
On Thu, 22 Oct 2009 11:50:51 -0500, Luis P. Mendes wrote: 5) Besides Alexei forthcoming book, is there documentation for the whole language and not only to part of it as in http://compsci.ca/v3/ viewtopic.php?t=9518 and http://en.wikibooks.org/wiki/A_Beginner% 27s_Guide_to_D ? I remember wh

Re: AA.remove in foreach && AA = new vs cleaning

2009-10-23 Thread Steven Schveighoffer
On Thu, 22 Oct 2009 19:58:40 -0400, Saaa wrote: Steven Schveighoffer wrote: So, what is the fastest way to clean an AA? aa = null; :( However, if you have multiple copies of the AA, this does not clear out the data. It merely resets the AA reference. I'd not trust your code :) because