This returns a pointer to the beginning of the vector's data.
@ -475,6 +475,14 @@ public:
return ((size_t)(sizeof(T))) * _union.capacity;
}
value_type* data() noexcept {
return item_ptr(0);
const value_type* data() const {
};
#pragma pack(pop)