Unofficial wish list status.
    BCS 
    BCS at pathlink.com
       
    Wed Feb 28 17:22:19 PST 2007
    
    
  
Daniel Keep wrote:
> 
> 4tuu4k002 at sneakemail.com wrote:
> 
>>129  array initialization/literals
> 
> 
> Well, we have that, don't we?
> 
yes, and IIRC it's broken
> 
>>57  Improved Foreach
> 
> So close; only need that "else" clause now...
> 
I'm haveing evil thoughts...
foreach(K key, V val;
	delegate int(int delegate(inout K key,inout V value)
	{
		...
	})
{
}
that works, so it the delegate has no state in local vars
auto tmp = delegate int(int delegate(inout K key,inout V value)
	{
		...
	}
tmp((inout K key,inout V value)
{
	... // on first
});
foreach(key, value; tmp)
{
	... // the rest
}
> 
>>33  Foreach on first/on last
see above
>>21  Header File generation by DMD
> 
> 
> Uhh, haven't we had this for *ages*?  dmd -H
> 
I think htod is more what is wanted
> 
>>20  Experimental d compiler
he, he, he... <G>
>>14  Iterators 
see above (sort of)
 >> and Generators
Ah.. err.. I'm not that evil
>>10  imag and comp FP types.
creal, ireal, or did I not read that correctly
>>7  conv() and opConv
opApply??
>>3  copy operator
see above
>>1  function call over network
I had somthing like that working at one point. (total hack)
    
    
More information about the Digitalmars-d
mailing list