Skip to content

[NFC] Add an iterator template for walking singly-linked lists #34144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions include/swift/Basic/STLExtras.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,47 @@ inline Iterator prev_or_begin(Iterator it, Iterator begin) {

/// @}

/// An iterator that walks a linked list of objects until it reaches
/// a null pointer.
template <class T, T* (&getNext)(T*)>
class LinkedListIterator {
T *Pointer;
public:
using iterator_category = std::forward_iterator_tag;
using value_type = T *;
using reference = T *;
using pointer = void;

/// Returns an iterator range starting from the given pointer and
/// running until it reaches a null pointer.
static llvm::iterator_range<LinkedListIterator> rangeBeginning(T *pointer) {
return {pointer, nullptr};
}

constexpr LinkedListIterator(T *pointer) : Pointer(pointer) {}

T *operator*() const {
assert(Pointer && "dereferencing a null iterator");
return Pointer;
}

LinkedListIterator &operator++() {
Pointer = getNext(Pointer);
return *this;
}
LinkedListIterator operator++(int) {
auto copy = *this;
Pointer = getNext(Pointer);
return copy;
}

friend bool operator==(LinkedListIterator lhs, LinkedListIterator rhs) {
return lhs.Pointer == rhs.Pointer;
}
friend bool operator!=(LinkedListIterator lhs, LinkedListIterator rhs) {
return lhs.Pointer != rhs.Pointer;
}
};

/// An iterator that transforms the result of an underlying bidirectional
/// iterator with a given operation.
Expand Down