www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Array!

reply Flaze07 <christianseiji.cs gmail.com> writes:
hey guys why it isn't allowed to have Array!Array!int..
not that it matters because I can emulate it through Array!int
May 12 2017
parent reply rikki cattermole <rikki cattermole.co.nz> writes:
On 12/05/2017 12:10 PM, Flaze07 wrote:
 hey guys why it isn't allowed to have Array!Array!int..
 not that it matters because I can emulate it through Array!int
Just how templates work: Array!(Array!int) is valid.
May 12 2017
parent Flaze07 <christianseiji.cs gmail.com> writes:
On Friday, 12 May 2017 at 11:12:59 UTC, rikki cattermole wrote:
 On 12/05/2017 12:10 PM, Flaze07 wrote:
 hey guys why it isn't allowed to have Array!Array!int..
 not that it matters because I can emulate it through Array!int
Just how templates work: Array!(Array!int) is valid.
you have my thanks..
May 12 2017