"cemiller" <ch...@dprogramming.com> wrote in message 
news:op.vg8kr7h9ycw...@mapddrule1.ffe.foxeg.com...
> On Mon, 09 Aug 2010 20:21:25 -0700, Andrei Alexandrescu 
> <seewebsiteforem...@erdani.org> wrote:
>>
>> fun(a, b, c) { body }
>>
>>   |
>>   V
>>
>> fun((a, b, c) { body });
>>
>
> I think this way will be better:
>    fun(a, b, c) { body }
>      |
>      V
>    fun(a, b, c, { body });
>

I was thinking something like this:

void fun(int x, int y, int z, delegate void(int, int, int) dg)

fun(x, y, z, a, b, c) { body }

  |
  V

fun(x, y, z, (a, b, c) { body });



Reply via email to