Hi,

Sorry for the duplicate the forum did not seem to have processed my post so I made another one. I'm sorry I didn't mean TYPE INFERENCE did not work I meant that this:
int x
uint y;
min( x, y ) will not compile, you would have to rewrite it to min( x, cast( int )y ) for example, or min!int( x, y ). I am just saying that there is an implementation in std.algorithm that work right out of the box without such explicitness. In addition, it works with a variable amount of params ( z = min( a, b, c, d, e, ..., y ) ), so I am just saying either we solicit the use of that one or implement it for two parameters :).

I'll let you know about how it goes with everything.

Phil

Reply via email to