Search

May 03
Learn »
...must be of type T because arr.length type is T"_.

What's is happening...
May 03
DIP Ideas »
and this won't work either:

int i = 2;
//int[10] powersOfTwo = generate!(() => i *= 2...
May 03
General »
...they generally do it for size reasons, and don't want to end up with...
May 03
Learn »
...just enjoy having bugs with some implicit size_t, or do everyone just enjoy deprecation...
May 03
DIP Ideas »
...is still the length, you just don't know what it is yet.

module m...
May 01
General »
...T as the larger type, with a preference for unsigned type if tied in size...
April 29
DIP Development »
...enum size_t i)
    {
        static if (__traits(isEnum, i) { ... } else { ... }
    }
}
X x;
size_t i...
April 29
DIP Development »
...d do:

```d
auto opSlice(size_t l, size_t u)(enum : l, enum : u...
April 29
Issues »
...code problem.

Perhaps change this code:
```
        for (size_t i = 0; i < members.length; i...
April 29
DIP Ideas »
``_`` is a valid identifier that may point to a length.

So that isn't usable.
12 13 14 15 16 17 18 19 20 21 22 23
Next ›   Last »