Search

November 22
Learn »
...tup[i] == "" ? tup[0] : tup[i];
    }

and would like to use it like this:

    auto...
November 21
Learn »
...memory-safe to access its elements. It would be like implicitly treating a void* like...
November 21
Learn »
Python itertools has `product`, I use it from time to time and it can definitely...
November 21
DIP Ideas »
...pointer?

Otherwise to generally fix it, there would need to be a way of declaring...
November 21
Learn »
We can't help you by seeing your pseudocode. Because when we look at your...
November 21
Issues »
...could actually do anything interesting with it would need to be @system anyway, all it...
November 21
Issues »
...it wouldn't, unless you can actually demonstrate how it would result in memory corruption.

--
November 21
Issues »
...would appear that without parens, the cast() applies to t (which is what I would...
November 21
Learn »
Heres a rule of thumb: Avoid functional programming if you should use goto
November 21
Learn »
```
row.iota.each!(
   cols.iota.each!((c){
     writeln("...");
     iota(6).each!(a=>writeln("..."));
})});
```
iota is...
1 2 3 4 5 6 7 8 9 10 11 12
Next ›   Last »