Home
last modified time | relevance | path

Searched defs:ValueView (Results 1 – 1 of 1) sorted by relevance

/llvm-project/libcxx/test/std/ranges/range.adaptors/range.join/
H A Dtypes.h153 struct ValueView : std::ranges::view_base { struct
158 constexpr ValueView(T* ptr) : ptr_(ptr) {} in ValueView() function
160 constexpr ValueView(ValueView&& other) : ptr_(other.ptr_) { other.ptr_.ptr_ = nullptr; } in ValueView() function
169 ValueView& operator=(const ValueView&) = delete; argument
171 constexpr InputValueIter<T> begin() const { return ptr_; } in begin()
172 constexpr sentinel end() const { return sentinel(InputValueIter<T>(ptr_.ptr_ + 4)); } in end()