Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/std/ranges/range.adaptors/range.split/
H A Dctor.range.pass.cpp27 struct Counting { struct
31 …constexpr Counting(int& copies_ctr, int& moves_ctr) : times_copied(&copies_ctr), times_moved(&move… in Counting() argument
33 …constexpr Counting(const Counting& rhs) : times_copied(rhs.times_copied), times_moved(rhs.times_mo… in Counting() argument
36 …constexpr Counting(Counting&& rhs) : times_copied(rhs.times_copied), times_moved(rhs.times_moved) { in Counting() argument