Lines Matching refs:delegate
1150 bool delegate(int) @safe store;
1713 static if (is(F == delegate))
1717 else static if (is(typeof(&F.opCall) == delegate)
1776 int delegate(ref uint) dg = incMyNumDel;
1792 static assert(!is(typeof(&s1.opCall) == delegate));
1798 static assert(!is(typeof(&S2.opCall) == delegate));
1818 int delegate() pure dg_pure = toDelegate(&func_pure);
1819 int delegate() nothrow dg_nothrow = toDelegate(&func_nothrow);
1820 int delegate() @property dg_property = toDelegate(&func_property);
1821 int delegate() @safe dg_safe = toDelegate(&func_safe);
1822 int delegate() @trusted dg_trusted = toDelegate(&func_trusted);
1823 int delegate() @system dg_system = toDelegate(&func_system);
1824 int delegate() pure nothrow dg_pure_nothrow = toDelegate(&func_pure_nothrow);
1825 … int delegate() @safe pure nothrow dg_pure_nothrow_safe = toDelegate(&func_pure_nothrow_safe);