diff options
author | Ryoga <ryoga_314@yahoo.co.jp> | 2019-03-27 08:47:35 +0900 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2019-03-26 16:47:35 -0700 |
commit | c5a22baecfdfc2707bcd06b8e9f168348a6afa43 (patch) | |
tree | 81d7d6b82cc5439d606a4dc1fb2f545b5b88ded9 /src/mixed_arena.h | |
parent | 596ad8288827bd68e7f0fd2e632b9f37f47a36a6 (diff) | |
download | binaryen-c5a22baecfdfc2707bcd06b8e9f168348a6afa43.tar.gz binaryen-c5a22baecfdfc2707bcd06b8e9f168348a6afa43.tar.bz2 binaryen-c5a22baecfdfc2707bcd06b8e9f168348a6afa43.zip |
Change ArenaVector<T>::Iterator to satisfy standard (Legacy)RandomAccessIterator concept (#1962)
Diffstat (limited to 'src/mixed_arena.h')
-rw-r--r-- | src/mixed_arena.h | 81 |
1 files changed, 76 insertions, 5 deletions
diff --git a/src/mixed_arena.h b/src/mixed_arena.h index 46487b7fc..5f48f5220 100644 --- a/src/mixed_arena.h +++ b/src/mixed_arena.h @@ -277,31 +277,102 @@ public: // iteration struct Iterator { + using iterator_category = std::random_access_iterator_tag; + using value_type = T; + using difference_type = std::ptrdiff_t; + using pointer = T*; + using reference = T&; + const SubType* parent; size_t index; + Iterator() : parent(nullptr), index(0) {} Iterator(const SubType* parent, size_t index) : parent(parent), index(index) {} + bool operator==(const Iterator& other) const { + return index == other.index && parent == other.parent; + } + bool operator!=(const Iterator& other) const { - return index != other.index || parent != other.parent; + return !(*this == other); + } + + bool operator<(const Iterator& other) const { + assert(parent == other.parent); + return index < other.index; + } + + bool operator>(const Iterator& other) const { + return other < *this; + } + + bool operator<=(const Iterator& other) const { + return !(other < *this); + } + + bool operator>=(const Iterator& other) const { + return !(*this < other); } - void operator++() { + Iterator& operator++() { index++; + return *this; } - Iterator& operator+=(int off) { + Iterator& operator--() { + index--; + return *this; + } + + Iterator operator++(int) { + Iterator it = *this; + ++*this; + return it; + } + + Iterator operator--(int) { + Iterator it = *this; + --*this; + return it; + } + + Iterator& operator+=(std::ptrdiff_t off) { index += off; return *this; } - const Iterator operator+(int off) const { + Iterator& operator-=(std::ptrdiff_t off) { + return *this += -off; + } + + Iterator operator+(std::ptrdiff_t off) const { return Iterator(*this) += off; } - T& operator*() { + Iterator operator-(std::ptrdiff_t off) const { + return *this + -off; + } + + std::ptrdiff_t operator-(const Iterator& other) const { + assert(parent == other.parent); + return index - other.index; + } + + friend Iterator operator+(std::ptrdiff_t off, const Iterator& it) { + return it + off; + } + + T& operator*() const { return (*parent)[index]; } + + T& operator[](std::ptrdiff_t off) const { + return (*parent)[index + off]; + } + + T* operator->() const { + return &(*parent)[index]; + } }; Iterator begin() const { |