On 08/05/14 21:29, H. S. Teoh via Digitalmars-d wrote:
> There are currently two Phobos PR's that implement essentially the same
> functionality, but in slightly different ways:
> 
>       https://github.com/D-Programming-Language/phobos/pull/1255

How is

   (1 + 2 * 3).bindTo!(x => x * x * x + 2 * x * x + 3 * x)()

better than

   (x => x * x * x + 2 * x * x + 3 * x)(1 + 2 * 3)

?

artur

Reply via email to