May 07, 2023 Issues » [Issue 23901] Spurious "Cannot move object [...] with internal pointer" | |||
|---|---|---|---|
| |||
...bool).Functor, test.functor3(int*).Functor).Tuple delegate() nothrow @nogc @safe, immutable(char)[]).fmtIf1(bool... | |||
May 06, 2023 General » Re: D needs a type expression syntax | |||
|---|---|---|---|
| |||
...the `BasicType`:
```d
delegate(ref int i) const -> ref Object dg1;
const delegate(ref int... | |||
May 05, 2023 Issues » [Issue 23891] [DIP1000] unnamed delegates ignore lifetimes | |||
|---|---|---|---|
| |||
...com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|[DIP1000] delegate |[DIP1000] unnamed delegates
|sometimes ignores lifetimes |ignore... | |||
May 05, 2023 Issues » [Issue 23891] [DIP1000] delegate sometimes ignores lifetimes | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23891 Bolpat <qs.il.paperinik@gmail.com... | |||
May 05, 2023 Issues » [Issue 23891] New: [DIP1000] delegate sometimes ignores lifetimes | |||
|---|---|---|---|
| |||
...when a delegate is invoked, lifetime checks are not done, unless the delegate is directly... | |||
May 04, 2023 General » D needs a type expression syntax | |||
|---|---|---|---|
| |||
...spec/type.html#TypeSuffix): the `function` and `delegate` ones. ([Here](https://github.com/dlang/dlang... | |||
May 03, 2023 Learn » Re: Given an object, how to call an alias to a member function on it? | |||
|---|---|---|---|
| |||
This also works:
void fun(alias method)(C c)
{
void delegate() dg = &c.method;
dg();
}
| |||
May 02, 2023 Learn » Re: Given an object, how to call an alias to a member function on it? | |||
|---|---|---|---|
| |||
Construct a delegate from the alias and the object, and call that delegate: ---- class C... | |||
April 25, 2023 Issues » [Issue 19573] usage of delegate literals at compile-time allocates closure at run-time | |||
|---|---|---|---|
| |||
...just an instantiation of isCallable with a delegate type (which is the correct type, given... | |||
April 16, 2023 Learn » Re: Returning a reference to be manipulated | |||
|---|---|---|---|
| |||
...T[]`, `K[V]` (Associative arrays), `class`, `function`, `delegate` are pointers. Static arrays and structs depend... | |||
Copyright © 1999-2021 by the D Language Foundation