November 19 Issues » [Issue 24867] Wrong deprecation warning of @system variable usage under CTFE | |||
|---|---|---|---|
| |||
...Outer alignment, sure, it makes less sense, but it serves a purpose. The packed outer... | |||
November 19 Issues » [Issue 24867] Wrong deprecation warning of @system variable usage under CTFE | |||
|---|---|---|---|
| |||
...6 from kinke <kinke@gmx.net> --- Any outer `align(1)` would never pass my code... | |||
November 19 Issues » [Issue 24867] Wrong deprecation warning of @system variable usage under CTFE | |||
|---|---|---|---|
| |||
...stressed that the deprecation comes from the **outer** `align(1)`, which is IMO a total... | |||
November 10 Issues » [Issue 24838] @nogc lambda shouldn't allocate closure when lambda refers only to 'this' | |||
|---|---|---|---|
| |||
...this) @nogc
{
auto outer = &this;
void func(MyClass* outer)
{
doSomething(*outer);
}
acceptsCallback(&outer.func);
}
}
func... | |||
October 23 General » Re: package & protected? | |||
|---|---|---|---|
| |||
...package class Accessor
{
int b(){ return this.outer.b; }
}
}
void f1()
{
A a=new A... | |||
October 19 Learn » Re: Capturing by value in the thread | |||
|---|---|---|---|
| |||
...functions, it has a reference to the outer stack frame, this is different. But your... | |||
September 25 DIP Development » Re: First Draft: Coroutines | |||
|---|---|---|---|
| |||
...a typed coroutine library type on the outer function."
```d
void main() {
InstantiableCoroutine!(int, int... | |||
September 03 DIP Ideas » Re: Escape Analysis & Owner Escape Analysis | |||
|---|---|---|---|
| |||
...variable:
```d
int* outer;
{
int* inner = ...;
outer = inner;
// @escape(outer) inner
// Converge `outer` with any... | |||
August 28 General » Re: This needs to be fixed | |||
|---|---|---|---|
| |||
...can be mixed-in directly: ``` ref Outer outer() => *cast(Outer*)(cast(void*)&this - mixin(name... | |||
August 28 General » Re: This needs to be fixed | |||
|---|---|---|---|
| |||
...alias instance)
{
alias Outer = __traits(parent, instance);
ref Outer outer() => *cast(Outer*)(cast(void*)&this... | |||
Copyright © 1999-2021 by the D Language Foundation