Chris Miller wrote:
> A new linked list module has been released at
> http://www.dprogramming.com/list.php
> You may be wondering why another linked list; check out the FAQ to see!
Very cool. One thing... does this work:
foreach( Person p; per.each )
{
if( p.age > 50 )
p.listRemove();
}
ie. can you remove elements within a foreach?
Sean