Search

November 19
Issues »
...Outer alignment, sure, it makes less sense, but it serves a purpose.

The packed outer...
November 19
Issues »
...6 from kinke <kinke@gmx.net> ---

Any outer `align(1)` would never pass my code...
November 19
Issues »
...stressed that the deprecation comes from the **outer** `align(1)`, which is IMO a total...
November 10
Issues »
...this) @nogc
    {
        auto outer = &this;
        void func(MyClass* outer)
        {
            doSomething(*outer);
        }
        acceptsCallback(&outer.func);
    }
  }

func...
October 23
General »
...package class Accessor
	{
		int b(){ return this.outer.b; }
	}
}

void f1()
{
	A a=new A...
October 19
Learn »
...functions, it has a reference to the outer stack frame, this is different.

But your...
September 25
DIP Development »
...a typed coroutine library type on the outer function."

```d
void main() {
	InstantiableCoroutine!(int, int...
September 03
DIP Ideas »
...variable:

```d
int* outer;

{
	int* inner = ...;
	outer = inner;
	// @escape(outer) inner
	
	// Converge `outer` with any...
August 28
General »
...can be mixed-in directly:

```
ref Outer outer() => *cast(Outer*)(cast(void*)&this - mixin(name...
August 28
General »
...alias instance)
{
    alias Outer = __traits(parent, instance);
    ref Outer outer() => *cast(Outer*)(cast(void*)&this...
1 2 3
Next ›   Last »