Search

September 10, 2021
Learn »
...you do a "Look inside," the copyright date...own code:

  immutable a = Foo();  // Should be only...
September 09, 2021
General »
...too:
        foo("omg", mixin(ARGS!a));
}

void foo...arguments are dynamic data inside the function.

You...
August 31, 2021
General »
...case, since this is inside a function, and...same for templates:

void foo(int i)() {
}

void...
August 13, 2021
Learn »
...const`.

Example:

```d
void foo(ref const int...say (poorly) is that inside the inout copy...
August 12, 2021
Learn »
Just add ```inout``` inside ```this(ref inout/*notice the inout*/ Foo other) inout/*notice the...
July 28, 2021
Issues »
...colvin@gmail.com

void foo(int[] a, int...fine with GC allocation *inside* the lambda, you...
July 19, 2021
Learn »
...return foo;
}

```

This will error out because the `foo` function needs to be generated inside...
June 30, 2021
Learn »
...a return type put it inside brackets like: const(MyClass) foo(); otherwise compiler will try...
June 30, 2021
Issues »
...foo; // fails, should pass
    }
}

void main() {
    S2.foo...accessible via  'alias this'
                    inside the subtype
           Product...
June 20, 2021
Issues »
...foo()()
{
    try {}
    catch
        assert(false);
}

alias goo = foo...it when it's inside a template, even...
2 3 4 5 6 7 8 9 10 11 12 13
Next ›   Last »