Search

August 03
Issues »
...aggregates don't inherit
                   |pure nothrow from outer     |pure, @nogc, nothrow from
                   |scope                       |outer scope

--
June 06
General »
...way for inner layers to refer to outer layers, otherwise you severely limit the capabilities...
May 27
Issues »
...that a range-of-ranges where the outer range uses lvalue elements will consume all...
May 27
General »
...outer range by-ref, it will consume all the inner ranges *but not the outer...
May 27
General »
...to use foreach to loop through the outer range and print out each inner range...
May 27
General »
...by un-reffing the elements of the outer array: `writeln(mdarr.map!(e => e));`

So...
May 07
DIP Development »
...to create a nested template with an outer template that takes a tuple for this...
April 26
DIP Ideas »
And...

class Outer
{
    Inner newInner()
    {
        return new Inner();
    }

    class Inner
    {
        private(this) this() //  Error: class...
April 26
DIP Ideas »
...choose not to use private(this).

class Outer
{
    private(this) int m;

    class Inner
    {
        private...
April 13
Issues »
...testcase.d(21): Error: escaping reference to outer local variable `_errStr`

Deprecation appeared in dmd...
1 2 3 4 5 6
Next ›   Last »