Search

December 08, 2020
Issues »
...import std.typecons : Proxy;

struct Inner {}
class Outer
{
    Inner inner;
    mixin Proxy!inner;
}

int main...
November 25, 2020
Learn »
...switch can contain case labels from an outer switch which is very good. Did not...
November 20, 2020
General »
...well, let's call it `UserAttributeDeclarationItem`. The outer node would not need a location, but...
November 14, 2020
General »
...mostly) allowed to shadow symbols in an outer scope.

The one exception is that local...
November 09, 2020
Issues »
...scope name from an outer scope, as long as this outer scope is in the...
October 19, 2020
Issues »
...system ~this() {}
}

struct Outer
{
    Inner inner;
    @safe ~this() {}
}

@safe void main()
{
    Outer outer;
}
---

Output when...
October 16, 2020
Learn »
...2. inner functions have access to the outer function's stack frame.

Often, I use...
October 04, 2020
Issues »
...shown: <source>(5): Deprecation: escaping reference to outer local variable `this`

The deprecation message is...
September 24, 2020
General »
...outer template context.
- template does not use static if's dependent on parameters or outer...
September 05, 2020
General »
...range elements of type: "~
    ElementType!Range.stringof);
}

// Outer range
struct Impl(Range)
{
 size_t groupNum...
13 14 15 16 17 18 19 20 21 22 23 24
Next ›   Last »