Search

May 07, 2023
Issues »
...bool).Functor,
test.functor3(int*).Functor).Tuple delegate() nothrow @nogc @safe,
immutable(char)[]).fmtIf1(bool...
May 06, 2023
General »
...the `BasicType`:
```d
      delegate(ref int i) const -> ref       Object dg1;
const delegate(ref int...
May 05, 2023
Issues »
...com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[DIP1000] delegate          |[DIP1000] unnamed delegates
                   |sometimes ignores lifetimes |ignore...
May 05, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=23891

Bolpat <qs.il.paperinik@gmail.com...
May 05, 2023
Issues »
...when a delegate is invoked, lifetime checks are not done, unless the delegate is directly...
May 04, 2023
General »
...spec/type.html#TypeSuffix): the `function` and `delegate` ones. ([Here](https://github.com/dlang/dlang...
May 03, 2023
Learn »
This also works:

void fun(alias method)(C c)
{
    void delegate() dg = &c.method;
    dg();
}
May 02, 2023
Learn »
Construct a delegate from the alias and the object, and call that delegate:

----
class C...
April 25, 2023
Issues »
...just an instantiation of isCallable with a delegate type (which is the correct type, given...
April 16, 2023
Learn »
...T[]`, `K[V]` (Associative arrays), `class`, `function`, `delegate` are pointers. Static arrays and structs depend...
31 32 33 34 35 36 37 38 39 40 41 42
Next ›   Last »