ddoc9305
-
Declaration
void
foo
(alias p = (a) => a)();foo
() -
Declaration
template
X
(alias pred = (x) => x)
templateX
(alias pred = (x) { int y; return y; } )
templateX
(alias pred = (int x) => x)
templateX
(alias pred = (int x) { int y; return y; } ) -
Declaration
template
X
(alias pred = function (x) => x)
templateX
(alias pred = function (x) { return x + 1; } )
templateX
(alias pred = function (int x) => x)
templateX
(alias pred = function (int x) { return x + 1; } )
templateX
(alias pred = function int(x) => x)
templateX
(alias pred = function int(x) { return x + 1; } )
templateX
(alias pred = function int(int x) => x)
templateX
(alias pred = function int(int x) { return x + 1; } ) -
Declaration
template
X
(alias pred = delegate (x) => x)
templateX
(alias pred = delegate (x) { return x + 1; } )
templateX
(alias pred = delegate (int x) => x)
templateX
(alias pred = delegate (int x) { return x + 1; } )
templateX
(alias pred = delegate int(x) => x)
templateX
(alias pred = delegate int(x) { return x + 1; } )
templateX
(alias pred = delegate int(int x) => x)
templateX
(alias pred = delegate int(int x) { return x + 1; } )