just wondering if it is possible or sensible to subclass Array<> to add functionality ?
if so, how would one go about it to avoid problems within JUCE ?
just wondering if it is possible or sensible to subclass Array<> to add functionality ?
if so, how would one go about it to avoid problems within JUCE ?
Sure, it’s safe as long as you’re just adding methods, and not overriding them, but bear in mind that it’s not got a virtual destructor.