Implemented Array::resize
This is implemented almost exactly as std::vector::resize
in STL: the only difference is that value-initialization is skipped for fundamental types. Otherwise it allows us to use combos like Array-of-Arrays etc.
This is implemented almost exactly as std::vector::resize
in STL: the only difference is that value-initialization is skipped for fundamental types. Otherwise it allows us to use combos like Array-of-Arrays etc.