Re: Doubt - Static multidimension arrays

2016-01-20 Thread Nemo via Digitalmars-d-learn
On Tuesday, 19 January 2016 at 20:39:37 UTC, tsbockman wrote: On Tuesday, 19 January 2016 at 19:14:30 UTC, alb wrote: [...] One other thing you may want to keep in mind when working on this kind of thing - when you loop over a multi-dimensional array, the order matters. For large

Re: nogc Array

2016-01-25 Thread Nemo via Digitalmars-d-learn
On Tuesday, 26 January 2016 at 03:03:40 UTC, Igor wrote: Is there a GC-less array that we can use out of the box or do I have to create my own? There's one in emsi containers.

Re: Lazy param with nothrow

2016-03-01 Thread Nemo via Digitalmars-d-learn
On Tuesday, 1 March 2016 at 13:35:08 UTC, Andrea Fontana wrote: This very very simple function [1] won't compile. It says that param t is not nothrow. Why? What's wrong with this? http://dpaste.dzfl.pl/bfc382e62711 writeln isn't nothrow so you can't call it from test which is nothrow