Search

October 25, 2022
Issues »
...DG : ref int delegate())(DG dg) { }
alias h = fImpl!(ref int delegate() @safe);
```
――― End...
October 24, 2022
Learn »
...1,
			"b": 2,
		];
	}

	int opApply(scope int delegate(string a, int b) dg) {
		foreach (k...
October 15, 2022
Issues »
...foo).funcptr;
   }
   auto fun () // invocation helper
   {
      void delegate () dg;
      dg.ptr = &this;
      dg.funcptr = fp...
October 14, 2022
Learn »
...occur inside the struct they represent a delegate and not a function pointer. Is it...
October 08, 2022
Issues »
...int dmd.declaration.TupleDeclaration.foreachVar(scope
int delegate(dmd.dsymbol.Dsymbol)) [0x564720891345]
src/dmd/dinterpret...
October 07, 2022
General »
...int dmd.declaration.TupleDeclaration.foreachVar(scope int delegate(dmd.dsymbol.Dsymbol)) [0x564720891345]
src/dmd/dinterpret...
October 06, 2022
Learn »
...string text;
string needle;

void test(bool delegate(string haystack) dg)
{

    auto sw = StopWatch(AutoStart...
October 01, 2022
Learn »
...scope const @safe
        if(is(DG : void delegate(scope const(char[])) @safe)
        || is(DG : void...
September 30, 2022
Learn »
...std/typecons.d:        void toString()(scope void delegate(const(char)[]) sink, scope const ref FormatSpec...
September 29, 2022
Issues »
...nl> ---
Reduced a bit:
```
struct NameAttribute
{
    int delegate() foo;
}

static NameAttribute getNamedAttribute(alias S)()
{
    return...
53 54 55 56 57 58 59 60 61 62 63 64
Next ›   Last »