diff options
author | Chris Robinson <[email protected]> | 2019-06-07 23:42:31 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-07 23:42:31 -0700 |
commit | 7988bc6e91899179a71650bd2534d7749f2a68c3 (patch) | |
tree | 274ac46cc2e88d674d84e927c11c4a424357ea72 /common/almalloc.h | |
parent | 7537bb349213bafb59e27117bbfe007ae7b573f3 (diff) |
Add and use proper types for FlexArray
Diffstat (limited to 'common/almalloc.h')
-rw-r--r-- | common/almalloc.h | 63 |
1 files changed, 43 insertions, 20 deletions
diff --git a/common/almalloc.h b/common/almalloc.h index df329747..d50aa1dd 100644 --- a/common/almalloc.h +++ b/common/almalloc.h @@ -158,16 +158,32 @@ std::unique_ptr<T> make_unique(ArgsT&&...args) */ template<typename T, size_t alignment=alignof(T)> struct FlexArray { - const size_t mSize; - alignas(alignment) T mArray[]; + using element_type = T; + using value_type = typename std::remove_cv<T>::type; + using index_type = size_t; + using difference_type = ptrdiff_t; - static constexpr size_t Sizeof(size_t count, size_t base=0u) noexcept + using pointer = T*; + using const_pointer = const T*; + using reference = T&; + using const_reference = const T&; + + using iterator = pointer; + using const_iterator = const_pointer; + using reverse_iterator = std::reverse_iterator<iterator>; + using const_reverse_iterator = std::reverse_iterator<const_iterator>; + + + const index_type mSize; + alignas(alignment) element_type mArray[]; + + static constexpr index_type Sizeof(index_type count, index_type base=0u) noexcept { return base + - std::max<size_t>(offsetof(FlexArray, mArray) + sizeof(T)*count, sizeof(FlexArray)); + std::max<index_type>(offsetof(FlexArray, mArray) + sizeof(T)*count, sizeof(FlexArray)); } - FlexArray(size_t size) : mSize{size} + FlexArray(index_type size) : mSize{size} { uninitialized_default_construct_n(mArray, mSize); } ~FlexArray() { destroy_n(mArray, mSize); } @@ -175,26 +191,33 @@ struct FlexArray { FlexArray(const FlexArray&) = delete; FlexArray& operator=(const FlexArray&) = delete; - size_t size() const noexcept { return mSize; } + index_type size() const noexcept { return mSize; } + + pointer data() noexcept { return mArray; } + const_pointer data() const noexcept { return mArray; } - T *data() noexcept { return mArray; } - const T *data() const noexcept { return mArray; } + reference operator[](index_type i) noexcept { return mArray[i]; } + const_reference operator[](index_type i) const noexcept { return mArray[i]; } - T& operator[](size_t i) noexcept { return mArray[i]; } - const T& operator[](size_t i) const noexcept { return mArray[i]; } + reference front() noexcept { return mArray[0]; } + const_reference front() const noexcept { return mArray[0]; } - T& front() noexcept { return mArray[0]; } - const T& front() const noexcept { return mArray[0]; } + reference back() noexcept { return mArray[mSize-1]; } + const_reference back() const noexcept { return mArray[mSize-1]; } - T& back() noexcept { return mArray[mSize-1]; } - const T& back() const noexcept { return mArray[mSize-1]; } + iterator begin() noexcept { return mArray; } + const_iterator begin() const noexcept { return mArray; } + const_iterator cbegin() const noexcept { return mArray; } + iterator end() noexcept { return mArray + mSize; } + const_iterator end() const noexcept { return mArray + mSize; } + const_iterator cend() const noexcept { return mArray + mSize; } - T *begin() noexcept { return mArray; } - const T *begin() const noexcept { return mArray; } - const T *cbegin() const noexcept { return mArray; } - T *end() noexcept { return mArray + mSize; } - const T *end() const noexcept { return mArray + mSize; } - const T *cend() const noexcept { return mArray + mSize; } + reverse_iterator rbegin() noexcept { return end(); } + const_reverse_iterator rbegin() const noexcept { return end(); } + const_reverse_iterator crbegin() const noexcept { return cend(); } + reverse_iterator rend() noexcept { return begin(); } + const_reverse_iterator rend() const noexcept { return begin(); } + const_reverse_iterator crend() const noexcept { return cbegin(); } DEF_PLACE_NEWDEL() }; |