Search

September 01
General »
...a daemon work fast then that is ok.

This is not an either/or situation...
August 31
Issues »
...but ENUM1 is constant.
                auto b = ENUM2; // OK
        }
}

void main()
{
        auto a = new shared(A...
August 31
Announce »
Ok, maybe I just read more to the nuances of the summary than there actually...
August 31
Issues »
...tupleof[0]; // error
    alias x = s.x; // OK
    x.writeln; // error, no instance of S...
August 31
General »
OK, thanks. And `s.expand[0].writeln();` works too.

So the following error makes sense...
August 31
Issues »
...b = ENUM2; // OK
        }
        static void g()
        {
                auto c = ENUM1; // OK
                auto d = ENUM2; // OK
        }
}

void...
August 30
DIP Ideas »
...d
struct S
{
   this(int) {}
}

S s; // ok?
```

Seems like if you want to *require...
August 29
DIP Ideas »
...S t = S(); // ok (constructed by calling `S.this()`)
    S u = void; // ok (not `@safe...
August 29
General »
...T input1, ref @escapeas(input1) T input2);
```

Ok great, you modeled the escapes, congratulations.

Or...
August 26
General »
...alias x = s.tupleof;
    x[0] = 2; // ok
    alias y = s.x;
    y = 2; // error...
1 2 3 4 5 6 7 8 9
Next ›   Last »