array<> within array<>

Post a reply

Smilies
:D :) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :geek: :ugeek: :!: :?: :idea: :arrow: :| :mrgreen: :3: :wub: >:( :blergh:
View more smilies

BBCode is OFF
Smilies are ON

Topic review
   

Expand view Topic review: array<> within array<>

Re: array<> within array<>

by Graf Zahl » Tue Nov 12, 2019 1:17 am

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.

array<> within array<>

by Tartlman » Mon Nov 11, 2019 8:45 pm

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.

Top