"cemiller" <[email protected]> wrote in message news:[email protected]... > On Mon, 09 Aug 2010 20:21:25 -0700, Andrei Alexandrescu > <[email protected]> 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 });
