Search

September 16, 2022
Issues »
...has no value when assigning to ref delegate return

https://github.com/dlang/dmd/pull...
September 15, 2022
General »
...a delegate parameter returning T automatically wrapping an argument of type T into a delegate...
September 15, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=23335

RazvanN <razvan.nitu1305@gmail.com> changed...
September 15, 2022
General »
...s expected
foo = S(); // same

@property void delegate() foo();
foo(); // same

@property ref int foo...
September 14, 2022
General »
...these and

@property void delegate() foo() { ... }

obj.foo(); // should call the delegate, not be a...
September 14, 2022
Issues »
...fun = (a) {};
    fun2 = (a) {};
}

void delegate(int) fun;

ref void delegate(int) fun2() {
    return fun;
}
```

--
September 14, 2022
Learn »
...pointer and then the library calls your function on the pointer simulating a d delegate.
September 13, 2022
Announce »
...is my opApply funtion:

    int opApply(int delegate(ref EC.ET) func) scope
    {
        while(!empty...
September 13, 2022
Learn »
...status 1120
```

The call is within a delegate to a function that returns a class...
September 12, 2022
Learn »
...wanted. I wrap the handler in a delegate that has the signature I need.

vibe...
55 56 57 58 59 60 61 62 63 64 65 66
Next ›   Last »