Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.lazy.split/
H A Dctor.range.pass.cpp26 struct ElementWithCounting { struct
30 …constexpr ElementWithCounting(int& copies_ctr, int& moves_ctr) : times_copied(&copies_ctr), times_… in ElementWithCounting() argument
32 constexpr ElementWithCounting(const ElementWithCounting& rhs) in ElementWithCounting() function
37 constexpr ElementWithCounting(ElementWithCounting&& rhs) in ElementWithCounting() argument
43 constexpr bool operator==(const ElementWithCounting&) const { return true; } in operator ==() argument
47 using value_type = ElementWithCounting;
65 constexpr const ElementWithCounting* begin() const { return nullptr; } in begin()
66 constexpr const ElementWithCounting* end() const { return nullptr; } in end()
118 using Element = ElementWithCounting; in test()