Search

October 10, 2019
General »
...foreach` body, or `break` out of an outer loop, or `return` instead of just aborting...
October 04, 2019
General »
...in its context and not outside the outer function's scope. My broader question is...
September 30, 2019
Debuggers »
...that do not show up are seem outer variables. I had to create a function...
September 05, 2019
General »
...the addresses of live instances in some outer code, so saving such re-registering may...
August 16, 2019
Learn »
...and if so then error?

If the outer context can be captured by the function...
August 16, 2019
Learn »
...a struct in another struct, and the outer struct is moved, then the inner struct...
August 15, 2019
Learn »
I would just make it `static class X` and then it shoudl work fine.

Won...
August 15, 2019
Learn »
void main()
{
    class X { ... }
    auto f = foo!X;
}

then in another module I have a...
August 15, 2019
General »
...1
    copy outer
    copy inner #1
    copy inner #2
    destroy inner #1
    destroy outer
    destroy...
August 11, 2019
Issues »
...Func[0];
        return Func0!()(a);
    }
 public:
    void outer()
    {
        void nested()(int a)
        {
            data += a;
        }

        mixin...
20 21 22 23 24 25 26 27 28 29 30 31
Next ›   Last »