Thread overview
Array!
May 12, 2017
Flaze07
May 12, 2017
rikki cattermole
May 12, 2017
Flaze07
May 12, 2017
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
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
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..