Home
last modified time | relevance | path

Searched refs:InputValueIter (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.join.view/
H A Dtypes.h116 struct InputValueIter { struct
123 constexpr InputValueIter() = default; argument
124 constexpr InputValueIter(T* ptr) : ptr_(ptr) {} in InputValueIter() argument
128 constexpr InputValueIter& operator++() {
135 constexpr friend bool operator==(const InputValueIter&, const InputValueIter&) = default;
140 InputValueIter<T> ptr_;
142 using sentinel = sentinel_wrapper<InputValueIter<T>>;
150 other.ptr_ = InputValueIter<T>(nullptr);
157 constexpr InputValueIter<T> begin() const { return ptr_; } in begin()
158 constexpr sentinel end() const { return sentinel(InputValueIter<T>(ptr_.ptr_ + 4)); } in end()