prevector: add C++11-like data() method

This returns a pointer to the beginning of the vector's data.
This commit is contained in:
Wladimir J. van der Laan 2016-09-30 17:19:51 +02:00
parent 9bc6a6bd7b
commit 47314e6daa

View file

@ -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 {
return item_ptr(0);
}
};
#pragma pack(pop)