array<> within array<>
Moderator: GZDoom Developers
array<> within array<>
to put it simply, i just want to be able to do something like "array<array<int> > myarray". While this is already doable if we shove the other array in a dummy class, it's an ugly workaround and I don't really see a reason why this shouldn't be a thing.
- Graf Zahl
- Lead GZDoom+Raze Developer
- Posts: 49234
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: array<> within array<>
No, this isn't possible. The reason for this is that each type of array needs a native backing implementation and a native export interface. For the seven basic types this is manageable, but as things get more complex this is no longer the case.