Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/std/ranges/range.adaptors/range.zip/sentinel/
H A Deq.pass.cpp42 struct ComparableView : IntBufferView { struct
45 constexpr auto begin() { return Iterator(buffer_); } in begin()
46 constexpr auto begin() const { return ConstIterator(buffer_); } in begin()
47 constexpr auto end() { return ComparableSentinel<false>(Iterator(buffer_ + size_)); } in end()
48 constexpr auto end() const { return ComparableSentinel<true>(ConstIterator(buffer_ + size_)); } in end()