What's left for 1.0?

BCS BCS at pathilink.com
Sun Nov 19 15:03:30 PST 2006


Bill Baxter wrote:
> So, what's left on everyone's lists for D1.0 must-have features?
> 
> I glanced over the "Pending Peeves" list, but none of those things seems 
> particularly serious to me.
> 
> What about the iterators?  Mostly that can be a library thing that comes 
> after the 1.0 release, but it would be nice if foreach at least had the 
> smarts built-in to use an iterator once the method names are decided upon.
> 
> --bb

There is no way to differentiate between function overloads.


int foo(){ return 0;}
int foo(int i){ return 0;}


int bob()
{
		// foo() or foo(int)?
	auto fn = &foo;
	auto tmp = TemplateTakingFn!(foo);
}



More information about the Digitalmars-d mailing list