Re: Removing entries from AAs

2011-08-19 Thread useo6
== Auszug aus Timon Gehr (timon.g...@gmx.ch)'s Artikel > On 08/19/2011 02:01 PM, useo6 wrote: > > Hi, > > > > I've create a little example of my problem: > > > > module example; > > > > class ExampleClass { > > > > public { > > > > int mi; > > > > this(int i) { > >

Re: Removing entries from AAs

2011-08-19 Thread Steven Schveighoffer
On Fri, 19 Aug 2011 08:28:59 -0400, Timon Gehr wrote: On 08/19/2011 02:01 PM, useo6 wrote: Hi, I've create a little example of my problem: module example; class ExampleClass { public { int mi; this(int i) { mi = i;

Re: Removing entries from AAs

2011-08-19 Thread Timon Gehr
On 08/19/2011 02:01 PM, useo6 wrote: Hi, I've create a little example of my problem: module example; class ExampleClass { public { int mi; this(int i) { mi = i; } } } int main(string[] args) {

Removing entries from AAs

2011-08-19 Thread useo6
Hi, I've create a little example of my problem: module example; class ExampleClass { public { int mi; this(int i) { mi = i; } } } int main(string[] args) { ExampleClass[hash_t] exp; Ex