Add an empty() method to FlexArray

This commit is contained in:
Chris Robinson 2019-06-29 18:53:20 -07:00
parent c7797fa10f
commit cbcee69ed1

View File

@ -185,13 +185,13 @@ struct FlexArray {
FlexArray(index_type size) : mSize{size} FlexArray(index_type size) : mSize{size}
{ uninitialized_default_construct_n(mArray, mSize); } { uninitialized_default_construct_n(mArray, mSize); }
~FlexArray() ~FlexArray() { destroy_n(mArray, mSize); }
{ destroy_n(mArray, mSize); }
FlexArray(const FlexArray&) = delete; FlexArray(const FlexArray&) = delete;
FlexArray& operator=(const FlexArray&) = delete; FlexArray& operator=(const FlexArray&) = delete;
index_type size() const noexcept { return mSize; } index_type size() const noexcept { return mSize; }
bool empty() const noexcept { return mSize == 0; }
pointer data() noexcept { return mArray; } pointer data() noexcept { return mArray; }
const_pointer data() const noexcept { return mArray; } const_pointer data() const noexcept { return mArray; }