On Tuesday, 29 December 2015 at 13:30:47 UTC, Márcio Martins wrote: > If I am reading the code right, the number of dimensions must > always be known at compile time, right? Not necessarily. The dimensions for this slice are computed at runtime. ``` auto slice = 1000.iota.sliced(5, 6, 7); ```